This article contains case-studies illustrating the benefits of implementing workflows with CoRC. Example code to get started can be found in the tutorial articles on model entitiy management, task management and model building.

Initial Setup

library(tidyverse)
library(parallel)
library(CoRC)

# helper to run tasks in parallel on all cores
mapInParallel <- function(data, fun, ..., .prep = {}) {
  cl <- makeCluster(detectCores())
  clusterCall(cl = cl, fun = eval, .prep, env = .GlobalEnv)
  result <- parLapplyLB(cl = cl, X = data, fun = as_mapper(fun), ..., chunk.size = 50)
  stopCluster(cl)
  result
}

3D Trajectory Plot of a Calcium Model

This example loads the Kummer2000 - Oscillations in Calcium Signalling model. The model has 3 species which oscillate. These oscialltions can be visualized as a trajectory through a 3D space. The example does this once in a deterministic and once in a stochatic fashion.

loadSBML("http://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000329")
#> # A COPASI model reference:
#> Model name: "Kummer2000 - Oscillations in Calcium Signalling"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8

# Run 24 sec (2 Periods)
setTimeCourseSettings(24, intervals = 10000)

timeseries <- list(
  deterministic = runTimeCourse()$result,
  stochastic = runTimeCourse(method = list(method = "directMethod", use_random_seed = T, random_seed = 1))$result
)

# Create the same plot for both timeseries
plots <- map(
  timeseries,
  plotly::plot_ly,
  type = "scatter3d",
  mode = "lines",
  x = ~ `G-alpha`,
  y = ~ activePLC,
  z = ~ Calcium,
  color = ~ Time
)

unloadModel()

plots$deterministic
plots$stochastic

Statistics of Repeated Stochastic Simulations

This implements an example from the Condor-COPASI paper. The example illustrates advantages of parallel processing.

# Run 1000 stochastic time series possibly in parallel
loadModel("https://raw.githubusercontent.com/copasi/condor-copasi/master/examples/stochastic_test.cps")
#> # A COPASI model reference:
#> Model name: "Kummer calcium model"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8

# timeseries <- 1:1000 %>% map(~ runTimeCourse()$result)
timeseries <-
  # Defines parallel evaluation:
  mapInParallel(
    # perpare worker (.prep),
    .prep = quote({
      library(CoRC)
      loadModel("https://raw.githubusercontent.com/copasi/condor-copasi/master/examples/stochastic_test.cps")
      setTimeCourseSettings(method = list(method = "directMethod", use_random_seed = T))
    }),
    # iteration data (1000 random seeds) is given as .x to iteration formula,
    1:1000,
    # iteration code (formula ~)
    ~ runTimeCourse(method = list(random_seed = .x))$result
  )

# Combine all results and reshape the data
plotdata <-
  timeseries %>%
  bind_rows() %>%
  group_by(Time) %>%
  # calculate mean and sd for all time points
  summarise_all(funs(mean, sd)) %>%
  # gather all values so the column "name" identifies "a_mean", "b_sd" etc.
  gather("name", "value", -Time) %>%
  # split up information on species (a,b,c) and type of value (mean, sd)
  separate(name, c("species", "type"), "_") %>%
  spread(type, value)

print(plotdata, n = 6)
#> # A tibble: 2,403 x 4
#>    Time species  mean    sd
#>   <dbl> <chr>   <dbl> <dbl>
#> 1  0    a        8.00 0    
#> 2  0    b        8.00 0    
#> 3  0    c        8.00 0    
#> 4  0.05 a        7.06 0.249
#> 5  0.05 b        8.12 0.117
#> 6  0.05 c        5.60 0.442
#> # … with 2,397 more rows

plot <-
  ggplot(data = plotdata, aes(x = Time, y = mean, group = species, tt_sd = sd)) +
  geom_ribbon(aes(ymin = mean - sd, ymax = mean + sd, fill = species), alpha = 1 / 4) +
  geom_line(aes(color = species)) +
  guides(fill = "none") +
  labs(
    x = paste0("Time (", getTimeUnit(), ")"),
    y = paste0("Concentration (", getQuantityUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot, tooltip = c("group", "x", "y", "tt_sd"))

Parameter Scan

2D Scan Over the Cartesian Product of Two Species Concentration Vectors

This implements an example from the Mendes2009 paper on COPASI use cases.

loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3

setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)

# Cartesian product of the input values
scan <- cross_df(
  list(
    cysteine = 0.3 * 10 ^ seq(0, 3, length.out = 6),
    adomed = seq(0, 100, length.out = 51)
  )
)

scan <-
  scan %>%
  mutate(
    # Calculate steady state fluxes for every row
    ss_fluxes = pmap(., function(cysteine, adomed) {
      setSpecies("Cysteine", initial_concentration = cysteine)
      setSpecies("adenosyl", initial_concentration = adomed)
      ss <- runSteadyState()
      stopifnot(ss$result == "found")
      ss$reactions$flux
    }),
    # The second flux is CGS
    CGS = map_dbl(ss_fluxes, 2),
    # The third flux is TS
    TS = map_dbl(ss_fluxes, 3)
  )

plot <-
  ggplot(data = scan, aes(x = adomed, group = cysteine)) +
  geom_point(aes(y = CGS, color = "CGS")) +
  geom_point(aes(y = TS, color = "TS")) +
  geom_line(aes(y = CGS, color = "CGS")) +
  geom_line(aes(y = TS, color = "TS")) +
  labs(
    x = paste0("Adomed (", getQuantityUnit(), ")"),
    y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot)

2D Scan over Random Concentrations of Two Species

This implements an example from the Mendes2009 paper on COPASI use cases. It is in many ways similar to the previous example but is written to run parallelized.

loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3

# 10000 repeats of steady state task with random cysteine and adomed
scan <-
  # Defines parallel evaluation:
  mapInParallel(
    # perpare worker (.prep),
    .prep = quote({
      library(CoRC)
      loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
      setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)
    }),
    # iteration data (10000 random seeds) is given as .x to iteration formula,
    1:10000,
    # iteration code (formula ~)
    ~ {
      set.seed(.x)
      cysteine <- 0.3 * 10 ^ runif(1L, min = 0, max = 3)
      adomed <- runif(1L, min = 0, max = 100)
      setSpecies(
        key = c("Cysteine", "adenosyl"),
        initial_concentration = c(cysteine, adomed)
      )
      ss <- runSteadyState()
      stopifnot(ss$result == "found")
      list(
        cysteine = cysteine,
        adomed = adomed,
        CGS = ss$reactions$flux[2],
        TS = ss$reactions$flux[3]
      )
    }
  )

# Combine all results and reshape the data
plotdata <-
  scan %>%
  bind_rows() %>%
  gather("reaction", "flux", CGS, TS)

plot <-
  ggplot(data = plotdata, aes(x = adomed, y = flux, group = reaction, tt_cys = cysteine)) +
  geom_point(aes(color = reaction), alpha = 1 / 10, size = 3 / 4) +
  labs(
    x = paste0("Adomed (", getQuantityUnit(), ")"),
    y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot, tooltip = c("tt_cys", "x", "y"))

Parameter Estimation

This implements an example from the Mendes2009 paper on COPASI use cases.

loadSBML("http://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000010")
#> # A COPASI model reference:
#> Model name: "Kholodenko2000 - Ultrasensitivity and negative feedback bring oscillations in MAPK cascade"
#> Number of compartments: 1
#> Number of species: 8
#> Number of reactions: 10

# get timeseries for the record
data_before <-
  runTimeCourse(1000, 1)$result %>%
  set_tidy_names(TRUE)

# read experimental data
data_experimental <-
  read_tsv("data/MAPKdata.txt") %>%
  rename(Time = time, "Mos-P" = "MAPKKK-P", "Erk2-P" = "MAPK-P") %>%
  set_tidy_names(TRUE)

# define the experiments for COPASI
fit_experiments <- defineExperiments(
  data = data_experimental,
  type = c("time", "dependent", "dependent"),
  mapping = c(NA, "{[Mos-P]}", "{[Erk2-P]}"),
  weight_method = "mean_square"
)

# define the parameters for COPASI
fit_parameters <-
  map(
    parameter_strict(regex(c("V1$", "V2$", "V5$", "V6$", "V9$", "V10$"))),
    ~ {
      val <- getParameters(.x)$value
      defineParameterEstimationParameter(parameter(.x, "Value"), start_value = val, lower_bound = val * 0.1, upper_bound = val * 1.9)
    }
  )

result <-
  runParameterEstimation(
    parameters = fit_parameters,
    experiments = fit_experiments,
    method = list(
      method = "LevenbergMarquardt",
      log_verbosity = 2
    ),
    update_model = TRUE
  )

# get timeseries for the record
data_after <-
  runTimeCourse(1000, 1)$result %>%
  set_tidy_names(TRUE)

plots <- list(
  Erk2.P =
    ggplot(mapping = aes(x = Time, y = Erk2.P)) +
    geom_point(data = data_experimental, aes(color = "experimental")) +
    geom_line(data = data_before, aes(color = "before")) +
    geom_line(data = data_after, aes(color = "after")) +
    scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
    labs(
      x = paste0("Time (", getTimeUnit(), ")"),
      y = paste0("Erk2-P (", getQuantityUnit(), ")"),
      color = "Series"
    ),
  Mos.P =
    ggplot(mapping = aes(x = Time, y = Mos.P)) +
    geom_point(data = data_experimental, aes(color = "experimental")) +
    geom_line(data = data_before, aes(color = "before")) +
    geom_line(data = data_after, aes(color = "after")) +
    scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
    labs(
      x = paste0("Time (", getTimeUnit(), ")"),
      y = paste0("Mos-P (", getQuantityUnit(), ")"),
      color = "Series"
    )
)

unloadModel()

result$fitted_values
#> # A tibble: 2 x 5
#>   fitted_value objective_value root_mean_square error_mean error_mean_std_…
#>   <chr>                  <dbl>            <dbl>      <dbl>            <dbl>
#> 1 [Erk2-P]                10.0             1.06      0.329             1.00
#> 2 [Mos-P]                 25.5             1.68     -0.284             1.66
result$parameters
#> # A tibble: 6 x 8
#>   parameter lower_bound start_value value upper_bound std_deviation
#>   <chr>           <dbl>       <dbl> <dbl>       <dbl>         <dbl>
#> 1 (MAPKKK …       0.25        2.47  2.47        4.75        0.140  
#> 2 (MAPKKK …       0.025       0.247 0.247       0.475       0.00830
#> 3 (dephosp…       0.075       0.883 0.883       1.42        0.259  
#> 4 (dephosp…       0.075       1.42  1.42        1.42        0.704  
#> 5 (dephosp…       0.05        0.726 0.726       0.95        0.0801 
#> 6 (dephosp…       0.05        0.704 0.704       0.95        0.0960 
#> # … with 2 more variables: coeff_of_variation <dbl>, gradient <dbl>
result$protocol
#> [1] "2019-04-04T23:53:12: Levenberg-Marquardt algorithm started\nFor more information about this method see: http://copasi.org/Support/User_Manual/Methods/Optimization_Methods/Levenberg_-_Marquardt/\n\n2019-04-04T23:53:12: niter=0, f=71.7571, fbest=209.016\nposition: x[0]=2.5206 x[1]=0.248088 x[2]=0.943894 x[3]=1.13126 x[4]=0.503919 x[5]=0.523434 \n\n2019-04-04T23:53:12: niter=1, f=49.4881, fbest=71.7571\nposition: x[0]=2.57364 x[1]=0.249004 x[2]=1.01966 x[3]=1.36379 x[4]=0.536481 x[5]=0.516296 \n\n2019-04-04T23:53:12: niter=2, f=44.604, fbest=49.4881\nposition: x[0]=2.59706 x[1]=0.247239 x[2]=0.988395 x[3]=1.425 x[4]=0.560401 x[5]=0.532908 \n\n2019-04-04T23:53:12: niter=3, f=43.4995, fbest=44.604\nposition: x[0]=2.58052 x[1]=0.24752 x[2]=0.9331 x[3]=1.425 x[4]=0.594019 x[5]=0.562526 \n\n2019-04-04T23:53:12: niter=4, f=59.4722, fbest=43.4995\nposition: x[0]=2.59238 x[1]=0.252472 x[2]=0.831024 x[3]=1.425 x[4]=0.642598 x[5]=0.596454 \n\n2019-04-04T23:53:12: Iteration 3: Restarting iteration with increased lambda.\nLambda = 0.25\n\n2019-04-04T23:53:12: niter=4, f=43.4497, fbest=43.4995\nposition: x[0]=2.58205 x[1]=0.249538 x[2]=0.923375 x[3]=1.425 x[4]=0.611778 x[5]=0.575754 \n\n2019-04-04T23:53:12: niter=5, f=43.7126, fbest=43.4497\nposition: x[0]=2.5563 x[1]=0.248562 x[2]=0.886033 x[3]=1.425 x[4]=0.633002 x[5]=0.598919 \n\n2019-04-04T23:53:12: Iteration 4: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2019-04-04T23:53:12: niter=5, f=41.0503, fbest=43.4497\nposition: x[0]=2.56485 x[1]=0.248608 x[2]=0.927953 x[3]=1.425 x[4]=0.616011 x[5]=0.585672 \n\n2019-04-04T23:53:12: niter=6, f=40.5903, fbest=41.0503\nposition: x[0]=2.55203 x[1]=0.248039 x[2]=0.915319 x[3]=1.425 x[4]=0.628712 x[5]=0.597653 \n\n2019-04-04T23:53:12: niter=7, f=42.3133, fbest=40.5903\nposition: x[0]=2.54032 x[1]=0.248322 x[2]=0.879513 x[3]=1.425 x[4]=0.649554 x[5]=0.615305 \n\n2019-04-04T23:53:12: Iteration 6: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2019-04-04T23:53:12: niter=7, f=39.4797, fbest=40.5903\nposition: x[0]=2.54241 x[1]=0.247927 x[2]=0.919874 x[3]=1.425 x[4]=0.634435 x[5]=0.60445 \n\n2019-04-04T23:53:12: niter=8, f=39.4485, fbest=39.4797\nposition: x[0]=2.53514 x[1]=0.24774 x[2]=0.906729 x[3]=1.425 x[4]=0.645603 x[5]=0.614451 \n\n2019-04-04T23:53:12: niter=9, f=41.5581, fbest=39.4485\nposition: x[0]=2.52876 x[1]=0.248203 x[2]=0.871513 x[3]=1.425 x[4]=0.663287 x[5]=0.629262 \n\n2019-04-04T23:53:12: Iteration 8: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2019-04-04T23:53:12: niter=9, f=38.5461, fbest=39.4485\nposition: x[0]=2.52766 x[1]=0.247714 x[2]=0.910813 x[3]=1.425 x[4]=0.650356 x[5]=0.620475 \n\n2019-04-04T23:53:12: niter=10, f=38.7307, fbest=38.5461\nposition: x[0]=2.52316 x[1]=0.247638 x[2]=0.897953 x[3]=1.425 x[4]=0.659854 x[5]=0.628924 \n\n2019-04-04T23:53:12: Iteration 9: Restarting iteration with increased lambda.\nLambda = 1\n\n2019-04-04T23:53:12: niter=10, f=37.98, fbest=38.5461\nposition: x[0]=2.52271 x[1]=0.247581 x[2]=0.915339 x[3]=1.425 x[4]=0.652287 x[5]=0.62421 \n\n2019-04-04T23:53:12: niter=11, f=37.8302, fbest=37.98\nposition: x[0]=2.52019 x[1]=0.247377 x[2]=0.911912 x[3]=1.425 x[4]=0.657409 x[5]=0.628839 \n\n2019-04-04T23:53:12: niter=12, f=38.2258, fbest=37.8302\nposition: x[0]=2.51734 x[1]=0.247445 x[2]=0.896321 x[3]=1.425 x[4]=0.666437 x[5]=0.636117 \n\n2019-04-04T23:53:12: Iteration 11: Restarting iteration with increased lambda.\nLambda = 1\n\n2019-04-04T23:53:12: niter=12, f=37.5147, fbest=37.8302\nposition: x[0]=2.5165 x[1]=0.247316 x[2]=0.914213 x[3]=1.425 x[4]=0.659441 x[5]=0.631893 \n\n2019-04-04T23:53:12: niter=13, f=37.3873, fbest=37.5147\nposition: x[0]=2.52017 x[1]=0.24739 x[2]=0.909957 x[3]=1.425 x[4]=0.66485 x[5]=0.63812 \n\n2019-04-04T23:53:12: niter=14, f=37.8781, fbest=37.3873\nposition: x[0]=2.51475 x[1]=0.247458 x[2]=0.892869 x[3]=1.425 x[4]=0.673228 x[5]=0.64398 \n\n2019-04-04T23:53:12: Iteration 13: Restarting iteration with increased lambda.\nLambda = 1\n\n2019-04-04T23:53:12: niter=14, f=37.1503, fbest=37.3873\nposition: x[0]=2.51548 x[1]=0.247346 x[2]=0.911183 x[3]=1.425 x[4]=0.666763 x[5]=0.640642 \n\n2019-04-04T23:53:12: niter=15, f=37.147, fbest=37.1503\nposition: x[0]=2.51222 x[1]=0.247254 x[2]=0.905662 x[3]=1.425 x[4]=0.671196 x[5]=0.643964 \n\n2019-04-04T23:53:12: niter=16, f=37.824, fbest=37.147\nposition: x[0]=2.51536 x[1]=0.247747 x[2]=0.889042 x[3]=1.425 x[4]=0.678465 x[5]=0.649521 \n\n2019-04-04T23:53:12: Iteration 15: Restarting iteration with increased lambda.\nLambda = 1\n\n2019-04-04T23:53:12: niter=16, f=36.9614, fbest=37.147\nposition: x[0]=2.51078 x[1]=0.24727 x[2]=0.906346 x[3]=1.425 x[4]=0.672716 x[5]=0.646587 \n\n2019-04-04T23:53:12: niter=17, f=37.0018, fbest=36.9614\nposition: x[0]=2.51125 x[1]=0.247301 x[2]=0.901734 x[3]=1.425 x[4]=0.676506 x[5]=0.649799 \n\n2019-04-04T23:53:12: Iteration 16: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=17, f=36.8084, fbest=36.9614\nposition: x[0]=2.50909 x[1]=0.247258 x[2]=0.908495 x[3]=1.425 x[4]=0.673298 x[5]=0.648181 \n\n2019-04-04T23:53:12: niter=18, f=36.6652, fbest=36.8084\nposition: x[0]=2.50557 x[1]=0.247124 x[2]=0.907725 x[3]=1.425 x[4]=0.677127 x[5]=0.651594 \n\n2019-04-04T23:53:12: niter=19, f=36.7425, fbest=36.6652\nposition: x[0]=2.50381 x[1]=0.247092 x[2]=0.900921 x[3]=1.425 x[4]=0.681027 x[5]=0.654186 \n\n2019-04-04T23:53:12: Iteration 18: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=19, f=36.5853, fbest=36.6652\nposition: x[0]=2.50358 x[1]=0.247094 x[2]=0.908542 x[3]=1.425 x[4]=0.677861 x[5]=0.652818 \n\n2019-04-04T23:53:12: niter=20, f=36.5548, fbest=36.5853\nposition: x[0]=2.50234 x[1]=0.247029 x[2]=0.906746 x[3]=1.425 x[4]=0.679854 x[5]=0.65433 \n\n2019-04-04T23:53:12: niter=21, f=36.6481, fbest=36.5548\nposition: x[0]=2.5012 x[1]=0.24703 x[2]=0.899683 x[3]=1.425 x[4]=0.683607 x[5]=0.656758 \n\n2019-04-04T23:53:12: Iteration 20: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=21, f=36.4882, fbest=36.5548\nposition: x[0]=2.50063 x[1]=0.24701 x[2]=0.907371 x[3]=1.425 x[4]=0.680574 x[5]=0.655476 \n\n2019-04-04T23:53:12: niter=22, f=36.4666, fbest=36.4882\nposition: x[0]=2.49967 x[1]=0.246965 x[2]=0.905426 x[3]=1.425 x[4]=0.682483 x[5]=0.656908 \n\n2019-04-04T23:53:12: niter=23, f=36.5701, fbest=36.4666\nposition: x[0]=2.49891 x[1]=0.24699 x[2]=0.898284 x[3]=1.425 x[4]=0.686062 x[5]=0.659215 \n\n2019-04-04T23:53:12: Iteration 22: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=23, f=36.4053, fbest=36.4666\nposition: x[0]=2.49809 x[1]=0.246955 x[2]=0.905984 x[3]=1.425 x[4]=0.683159 x[5]=0.658017 \n\n2019-04-04T23:53:12: niter=24, f=36.3896, fbest=36.4053\nposition: x[0]=2.49733 x[1]=0.246922 x[2]=0.903993 x[3]=1.425 x[4]=0.684983 x[5]=0.659391 \n\n2019-04-04T23:53:12: niter=25, f=36.5025, fbest=36.3896\nposition: x[0]=2.49697 x[1]=0.246969 x[2]=0.896838 x[3]=1.425 x[4]=0.688417 x[5]=0.661604 \n\n2019-04-04T23:53:12: Iteration 24: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=25, f=36.3318, fbest=36.3896\nposition: x[0]=2.49588 x[1]=0.24692 x[2]=0.90453 x[3]=1.425 x[4]=0.685623 x[5]=0.660474 \n\n2019-04-04T23:53:12: niter=26, f=36.3207, fbest=36.3318\nposition: x[0]=2.49527 x[1]=0.246894 x[2]=0.902528 x[3]=1.425 x[4]=0.687353 x[5]=0.661791 \n\n2019-04-04T23:53:12: niter=27, f=36.4414, fbest=36.3207\nposition: x[0]=2.49507 x[1]=0.246946 x[2]=0.895401 x[3]=1.425 x[4]=0.690621 x[5]=0.663864 \n\n2019-04-04T23:53:12: Iteration 26: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=27, f=36.2653, fbest=36.3207\nposition: x[0]=2.49386 x[1]=0.246893 x[2]=0.903062 x[3]=1.425 x[4]=0.687943 x[5]=0.662842 \n\n2019-04-04T23:53:12: niter=28, f=36.2587, fbest=36.2653\nposition: x[0]=2.49339 x[1]=0.246874 x[2]=0.901075 x[3]=1.425 x[4]=0.6896 x[5]=0.664098 \n\n2019-04-04T23:53:12: niter=29, f=36.3862, fbest=36.2587\nposition: x[0]=2.49342 x[1]=0.246933 x[2]=0.894031 x[3]=1.425 x[4]=0.692726 x[5]=0.666047 \n\n2019-04-04T23:53:12: Iteration 28: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=29, f=36.2053, fbest=36.2587\nposition: x[0]=2.49205 x[1]=0.246874 x[2]=0.901629 x[3]=1.425 x[4]=0.690151 x[5]=0.66512 \n\n2019-04-04T23:53:12: niter=30, f=36.202, fbest=36.2053\nposition: x[0]=2.4917 x[1]=0.246859 x[2]=0.899683 x[3]=1.425 x[4]=0.691735 x[5]=0.666315 \n\n2019-04-04T23:53:12: niter=31, f=36.3373, fbest=36.202\nposition: x[0]=2.49191 x[1]=0.246924 x[2]=0.892663 x[3]=1.425 x[4]=0.694735 x[5]=0.668147 \n\n2019-04-04T23:53:12: Iteration 30: Restarting iteration with increased lambda.\nLambda = 2\n\n2019-04-04T23:53:12: niter=31, f=36.1507, fbest=36.202\nposition: x[0]=2.49041 x[1]=0.246861 x[2]=0.900242 x[3]=1.425 x[4]=0.692252 x[5]=0.667308 \n\n2019-04-04T23:53:12: niter=32, f=36.1513, fbest=36.1507\nposition: x[0]=2.49015 x[1]=0.246849 x[2]=0.898305 x[3]=1.425 x[4]=0.693773 x[5]=0.668445 \n\n2019-04-04T23:53:12: Iteration 31: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=32, f=36.1186, fbest=36.1507\nposition: x[0]=2.48951 x[1]=0.246858 x[2]=0.900911 x[3]=1.425 x[4]=0.692437 x[5]=0.667917 \n\n2019-04-04T23:53:12: niter=33, f=36.0998, fbest=36.1186\nposition: x[0]=2.4891 x[1]=0.246834 x[2]=0.900726 x[3]=1.425 x[4]=0.693159 x[5]=0.668631 \n\n2019-04-04T23:53:12: niter=34, f=36.112, fbest=36.0998\nposition: x[0]=2.48928 x[1]=0.246817 x[2]=0.898293 x[3]=1.425 x[4]=0.694754 x[5]=0.669598 \n\n2019-04-04T23:53:12: Iteration 33: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=34, f=36.0798, fbest=36.0998\nposition: x[0]=2.48849 x[1]=0.246826 x[2]=0.901118 x[3]=1.425 x[4]=0.693412 x[5]=0.669136 \n\n2019-04-04T23:53:12: niter=35, f=36.0674, fbest=36.0798\nposition: x[0]=2.48829 x[1]=0.246802 x[2]=0.900668 x[3]=1.425 x[4]=0.694169 x[5]=0.669761 \n\n2019-04-04T23:53:12: niter=36, f=36.0828, fbest=36.0674\nposition: x[0]=2.48856 x[1]=0.246792 x[2]=0.898025 x[3]=1.425 x[4]=0.695749 x[5]=0.670659 \n\n2019-04-04T23:53:12: Iteration 35: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=36, f=36.0507, fbest=36.0674\nposition: x[0]=2.48775 x[1]=0.246796 x[2]=0.900951 x[3]=1.425 x[4]=0.694431 x[5]=0.670231 \n\n2019-04-04T23:53:12: niter=37, f=36.0405, fbest=36.0507\nposition: x[0]=2.4876 x[1]=0.246777 x[2]=0.900382 x[3]=1.425 x[4]=0.69518 x[5]=0.670819 \n\n2019-04-04T23:53:12: niter=38, f=36.0577, fbest=36.0405\nposition: x[0]=2.48789 x[1]=0.246774 x[2]=0.897634 x[3]=1.425 x[4]=0.696724 x[5]=0.671678 \n\n2019-04-04T23:53:12: Iteration 37: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=38, f=36.0253, fbest=36.0405\nposition: x[0]=2.48707 x[1]=0.246773 x[2]=0.900614 x[3]=1.425 x[4]=0.695437 x[5]=0.671272 \n\n2019-04-04T23:53:12: niter=39, f=36.0163, fbest=36.0253\nposition: x[0]=2.48693 x[1]=0.246758 x[2]=0.899983 x[3]=1.425 x[4]=0.696168 x[5]=0.67184 \n\n2019-04-04T23:53:12: niter=40, f=36.0348, fbest=36.0163\nposition: x[0]=2.48723 x[1]=0.24676 x[2]=0.89717 x[3]=1.425 x[4]=0.697674 x[5]=0.672667 \n\n2019-04-04T23:53:12: Iteration 39: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=40, f=36.002, fbest=36.0163\nposition: x[0]=2.48641 x[1]=0.246756 x[2]=0.900185 x[3]=1.425 x[4]=0.696416 x[5]=0.672283 \n\n2019-04-04T23:53:12: niter=41, f=35.9939, fbest=36.002\nposition: x[0]=2.48627 x[1]=0.246744 x[2]=0.899516 x[3]=1.425 x[4]=0.697127 x[5]=0.672834 \n\n2019-04-04T23:53:12: niter=42, f=36.0136, fbest=35.9939\nposition: x[0]=2.48657 x[1]=0.24675 x[2]=0.896665 x[3]=1.425 x[4]=0.698612 x[5]=0.673639 \n\n2019-04-04T23:53:12: Iteration 41: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=42, f=35.9801, fbest=35.9939\nposition: x[0]=2.48575 x[1]=0.246743 x[2]=0.8997 x[3]=1.425 x[4]=0.697371 x[5]=0.673269 \n\n2019-04-04T23:53:12: niter=43, f=35.9728, fbest=35.9801\nposition: x[0]=2.48562 x[1]=0.246734 x[2]=0.899008 x[3]=1.425 x[4]=0.698063 x[5]=0.673807 \n\n2019-04-04T23:53:12: niter=44, f=35.9937, fbest=35.9728\nposition: x[0]=2.48595 x[1]=0.246743 x[2]=0.896136 x[3]=1.425 x[4]=0.6995 x[5]=0.674579 \n\n2019-04-04T23:53:12: Iteration 43: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=44, f=35.9594, fbest=35.9728\nposition: x[0]=2.48511 x[1]=0.246734 x[2]=0.899181 x[3]=1.425 x[4]=0.698293 x[5]=0.674234 \n\n2019-04-04T23:53:12: niter=45, f=35.953, fbest=35.9594\nposition: x[0]=2.48495 x[1]=0.246724 x[2]=0.898433 x[3]=1.425 x[4]=0.698962 x[5]=0.674756 \n\n2019-04-04T23:53:12: niter=46, f=35.9753, fbest=35.953\nposition: x[0]=2.48531 x[1]=0.246736 x[2]=0.895568 x[3]=1.425 x[4]=0.700372 x[5]=0.675499 \n\n2019-04-04T23:53:12: Iteration 45: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=46, f=35.94, fbest=35.953\nposition: x[0]=2.48445 x[1]=0.246725 x[2]=0.898607 x[3]=1.425 x[4]=0.699185 x[5]=0.675175 \n\n2019-04-04T23:53:12: niter=47, f=35.9341, fbest=35.94\nposition: x[0]=2.48434 x[1]=0.246719 x[2]=0.897906 x[3]=1.425 x[4]=0.699848 x[5]=0.675684 \n\n2019-04-04T23:53:12: niter=48, f=35.9574, fbest=35.9341\nposition: x[0]=2.48472 x[1]=0.246732 x[2]=0.895032 x[3]=1.425 x[4]=0.701227 x[5]=0.676402 \n\n2019-04-04T23:53:12: Iteration 47: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=48, f=35.9215, fbest=35.9341\nposition: x[0]=2.48384 x[1]=0.24672 x[2]=0.898075 x[3]=1.425 x[4]=0.700063 x[5]=0.676097 \n\n2019-04-04T23:53:12: niter=49, f=35.9161, fbest=35.9215\nposition: x[0]=2.48375 x[1]=0.246714 x[2]=0.897368 x[3]=1.425 x[4]=0.700709 x[5]=0.676594 \n\n2019-04-04T23:53:12: niter=50, f=35.9378, fbest=35.9161\nposition: x[0]=2.48318 x[1]=0.246671 x[2]=0.894444 x[3]=1.425 x[4]=0.701796 x[5]=0.677102 \n\n2019-04-04T23:53:12: Iteration 49: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=50, f=35.9033, fbest=35.9161\nposition: x[0]=2.48295 x[1]=0.246698 x[2]=0.897517 x[3]=1.425 x[4]=0.70083 x[5]=0.676974 \n\n2019-04-04T23:53:12: niter=51, f=35.9051, fbest=35.9033\nposition: x[0]=2.48337 x[1]=0.246703 x[2]=0.89675 x[3]=1.425 x[4]=0.700635 x[5]=0.677208 \n\n2019-04-04T23:53:12: Iteration 50: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:12: niter=51, f=35.8974, fbest=35.9033\nposition: x[0]=2.48268 x[1]=0.2467 x[2]=0.897711 x[3]=1.425 x[4]=0.700679 x[5]=0.677185 \n\n2019-04-04T23:53:12: niter=52, f=35.8912, fbest=35.8974\nposition: x[0]=2.48254 x[1]=0.246698 x[2]=0.897675 x[3]=1.425 x[4]=0.701005 x[5]=0.67747 \n\n2019-04-04T23:53:12: niter=53, f=35.8893, fbest=35.8912\nposition: x[0]=2.48274 x[1]=0.246696 x[2]=0.896816 x[3]=1.425 x[4]=0.701727 x[5]=0.67785 \n\n2019-04-04T23:53:12: niter=54, f=35.9165, fbest=35.8893\nposition: x[0]=2.48332 x[1]=0.246715 x[2]=0.893871 x[3]=1.425 x[4]=0.7031 x[5]=0.67845 \n\n2019-04-04T23:53:12: Iteration 53: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=54, f=35.8795, fbest=35.8893\nposition: x[0]=2.48235 x[1]=0.246699 x[2]=0.89693 x[3]=1.425 x[4]=0.701958 x[5]=0.678213 \n\n2019-04-04T23:53:12: niter=55, f=35.8765, fbest=35.8795\nposition: x[0]=2.48234 x[1]=0.246696 x[2]=0.896184 x[3]=1.425 x[4]=0.7026 x[5]=0.67865 \n\n2019-04-04T23:53:12: niter=56, f=35.8932, fbest=35.8765\nposition: x[0]=2.47764 x[1]=0.246547 x[2]=0.893345 x[3]=1.425 x[4]=0.702646 x[5]=0.678252 \n\n2019-04-04T23:53:12: Iteration 55: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=56, f=35.8631, fbest=35.8765\nposition: x[0]=2.48 x[1]=0.246643 x[2]=0.89629 x[3]=1.425 x[4]=0.702384 x[5]=0.678882 \n\n2019-04-04T23:53:12: niter=57, f=35.8624, fbest=35.8631\nposition: x[0]=2.48046 x[1]=0.246646 x[2]=0.895523 x[3]=1.425 x[4]=0.703132 x[5]=0.679215 \n\n2019-04-04T23:53:12: niter=58, f=35.8917, fbest=35.8624\nposition: x[0]=2.48139 x[1]=0.246679 x[2]=0.892717 x[3]=1.425 x[4]=0.704503 x[5]=0.679775 \n\n2019-04-04T23:53:12: Iteration 57: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=58, f=35.8533, fbest=35.8624\nposition: x[0]=2.48018 x[1]=0.246653 x[2]=0.895682 x[3]=1.425 x[4]=0.703369 x[5]=0.679563 \n\n2019-04-04T23:53:12: niter=59, f=35.851, fbest=35.8533\nposition: x[0]=2.48035 x[1]=0.246658 x[2]=0.895014 x[3]=1.425 x[4]=0.704005 x[5]=0.679981 \n\n2019-04-04T23:53:12: niter=60, f=35.88, fbest=35.851\nposition: x[0]=2.48111 x[1]=0.246687 x[2]=0.892236 x[3]=1.425 x[4]=0.705279 x[5]=0.680569 \n\n2019-04-04T23:53:12: Iteration 59: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=60, f=35.8403, fbest=35.851\nposition: x[0]=2.47998 x[1]=0.246664 x[2]=0.895205 x[3]=1.425 x[4]=0.704199 x[5]=0.680356 \n\n2019-04-04T23:53:12: niter=61, f=35.8292, fbest=35.8403\nposition: x[0]=2.48051 x[1]=0.246733 x[2]=0.900493 x[3]=1.425 x[4]=0.704975 x[5]=0.680455 \n\n2019-04-04T23:53:12: niter=62, f=35.8425, fbest=35.8292\nposition: x[0]=2.48154 x[1]=0.246655 x[2]=0.895477 x[3]=1.425 x[4]=0.705969 x[5]=0.681074 \n\n2019-04-04T23:53:12: Iteration 61: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:12: niter=62, f=35.8226, fbest=35.8292\nposition: x[0]=2.48055 x[1]=0.246689 x[2]=0.899649 x[3]=1.425 x[4]=0.705132 x[5]=0.680758 \n\n2019-04-04T23:53:13: niter=63, f=35.8187, fbest=35.8226\nposition: x[0]=2.48077 x[1]=0.246644 x[2]=0.89776 x[3]=1.425 x[4]=0.705579 x[5]=0.68119 \n\n2019-04-04T23:53:13: niter=64, f=35.8427, fbest=35.8187\nposition: x[0]=2.48124 x[1]=0.246646 x[2]=0.893731 x[3]=1.425 x[4]=0.706594 x[5]=0.681813 \n\n2019-04-04T23:53:13: Iteration 63: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=64, f=35.8116, fbest=35.8187\nposition: x[0]=2.48041 x[1]=0.246637 x[2]=0.89741 x[3]=1.425 x[4]=0.705705 x[5]=0.681551 \n\n2019-04-04T23:53:13: niter=65, f=35.8099, fbest=35.8116\nposition: x[0]=2.48036 x[1]=0.246629 x[2]=0.896045 x[3]=1.425 x[4]=0.706165 x[5]=0.681991 \n\n2019-04-04T23:53:13: niter=66, f=35.837, fbest=35.8099\nposition: x[0]=2.48076 x[1]=0.246655 x[2]=0.892506 x[3]=1.425 x[4]=0.707221 x[5]=0.682574 \n\n2019-04-04T23:53:13: Iteration 65: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=66, f=35.8014, fbest=35.8099\nposition: x[0]=2.47991 x[1]=0.246632 x[2]=0.89592 x[3]=1.425 x[4]=0.706294 x[5]=0.682359 \n\n2019-04-04T23:53:13: niter=67, f=35.7999, fbest=35.8014\nposition: x[0]=2.47982 x[1]=0.246636 x[2]=0.894833 x[3]=1.425 x[4]=0.706776 x[5]=0.682782 \n\n2019-04-04T23:53:13: niter=68, f=35.8291, fbest=35.7999\nposition: x[0]=2.48027 x[1]=0.246667 x[2]=0.891566 x[3]=1.425 x[4]=0.707858 x[5]=0.683324 \n\n2019-04-04T23:53:13: Iteration 67: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=68, f=35.7908, fbest=35.7999\nposition: x[0]=2.47936 x[1]=0.246643 x[2]=0.894825 x[3]=1.425 x[4]=0.706911 x[5]=0.683145 \n\n2019-04-04T23:53:13: niter=69, f=35.7897, fbest=35.7908\nposition: x[0]=2.4793 x[1]=0.246649 x[2]=0.89389 x[3]=1.425 x[4]=0.707406 x[5]=0.68355 \n\n2019-04-04T23:53:13: niter=70, f=35.8204, fbest=35.7897\nposition: x[0]=2.47981 x[1]=0.246677 x[2]=0.890794 x[3]=1.425 x[4]=0.708482 x[5]=0.684051 \n\n2019-04-04T23:53:13: Iteration 69: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=70, f=35.7803, fbest=35.7897\nposition: x[0]=2.47884 x[1]=0.246654 x[2]=0.893952 x[3]=1.425 x[4]=0.707539 x[5]=0.683906 \n\n2019-04-04T23:53:13: niter=71, f=35.7795, fbest=35.7803\nposition: x[0]=2.4788 x[1]=0.246658 x[2]=0.893115 x[3]=1.425 x[4]=0.708049 x[5]=0.684298 \n\n2019-04-04T23:53:13: niter=72, f=35.8089, fbest=35.7795\nposition: x[0]=2.47933 x[1]=0.246683 x[2]=0.890339 x[3]=1.425 x[4]=0.709135 x[5]=0.684766 \n\n2019-04-04T23:53:13: Iteration 71: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=72, f=35.7695, fbest=35.7795\nposition: x[0]=2.47835 x[1]=0.246663 x[2]=0.893304 x[3]=1.425 x[4]=0.708188 x[5]=0.684646 \n\n2019-04-04T23:53:13: niter=73, f=35.7739, fbest=35.7695\nposition: x[0]=2.47823 x[1]=0.246663 x[2]=0.89261 x[3]=1.425 x[4]=0.708625 x[5]=0.684746 \n\n2019-04-04T23:53:13: Iteration 72: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=73, f=35.7646, fbest=35.7695\nposition: x[0]=2.47801 x[1]=0.246665 x[2]=0.893502 x[3]=1.425 x[4]=0.708222 x[5]=0.684786 \n\n2019-04-04T23:53:13: niter=74, f=35.7598, fbest=35.7646\nposition: x[0]=2.47696 x[1]=0.246662 x[2]=0.892896 x[3]=1.425 x[4]=0.708436 x[5]=0.685059 \n\n2019-04-04T23:53:13: niter=75, f=35.7617, fbest=35.7598\nposition: x[0]=2.47727 x[1]=0.246657 x[2]=0.892067 x[3]=1.425 x[4]=0.708996 x[5]=0.685373 \n\n2019-04-04T23:53:13: Iteration 74: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=75, f=35.7555, fbest=35.7598\nposition: x[0]=2.47677 x[1]=0.246661 x[2]=0.893042 x[3]=1.425 x[4]=0.708506 x[5]=0.685245 \n\n2019-04-04T23:53:13: niter=76, f=35.7558, fbest=35.7555\nposition: x[0]=2.47687 x[1]=0.246695 x[2]=0.891914 x[3]=1.425 x[4]=0.708857 x[5]=0.685604 \n\n2019-04-04T23:53:13: Iteration 75: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=76, f=35.7541, fbest=35.7555\nposition: x[0]=2.47669 x[1]=0.246663 x[2]=0.892789 x[3]=1.425 x[4]=0.70855 x[5]=0.685392 \n\n2019-04-04T23:53:13: niter=77, f=35.7507, fbest=35.7541\nposition: x[0]=2.47655 x[1]=0.246662 x[2]=0.892908 x[3]=1.425 x[4]=0.708639 x[5]=0.685556 \n\n2019-04-04T23:53:13: niter=78, f=35.7479, fbest=35.7507\nposition: x[0]=2.47659 x[1]=0.246656 x[2]=0.892788 x[3]=1.425 x[4]=0.708899 x[5]=0.685766 \n\n2019-04-04T23:53:13: niter=79, f=35.7508, fbest=35.7479\nposition: x[0]=2.47701 x[1]=0.246651 x[2]=0.891866 x[3]=1.425 x[4]=0.709494 x[5]=0.686022 \n\n2019-04-04T23:53:13: Iteration 78: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=79, f=35.7447, fbest=35.7479\nposition: x[0]=2.47645 x[1]=0.246655 x[2]=0.892888 x[3]=1.425 x[4]=0.708987 x[5]=0.685926 \n\n2019-04-04T23:53:13: niter=80, f=35.742, fbest=35.7447\nposition: x[0]=2.47648 x[1]=0.24665 x[2]=0.89274 x[3]=1.425 x[4]=0.709243 x[5]=0.686131 \n\n2019-04-04T23:53:13: niter=81, f=35.7452, fbest=35.742\nposition: x[0]=2.47689 x[1]=0.246646 x[2]=0.89178 x[3]=1.425 x[4]=0.709829 x[5]=0.68638 \n\n2019-04-04T23:53:13: Iteration 80: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=81, f=35.739, fbest=35.742\nposition: x[0]=2.47634 x[1]=0.246649 x[2]=0.892826 x[3]=1.425 x[4]=0.70933 x[5]=0.686288 \n\n2019-04-04T23:53:13: niter=82, f=35.7365, fbest=35.739\nposition: x[0]=2.47637 x[1]=0.246645 x[2]=0.892657 x[3]=1.425 x[4]=0.709581 x[5]=0.686489 \n\n2019-04-04T23:53:13: niter=83, f=35.7399, fbest=35.7365\nposition: x[0]=2.47676 x[1]=0.246642 x[2]=0.891669 x[3]=1.425 x[4]=0.710158 x[5]=0.686732 \n\n2019-04-04T23:53:13: Iteration 82: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=83, f=35.7336, fbest=35.7365\nposition: x[0]=2.47622 x[1]=0.246644 x[2]=0.892734 x[3]=1.425 x[4]=0.709665 x[5]=0.686644 \n\n2019-04-04T23:53:13: niter=84, f=35.7313, fbest=35.7336\nposition: x[0]=2.47624 x[1]=0.24664 x[2]=0.892549 x[3]=1.425 x[4]=0.709913 x[5]=0.686842 \n\n2019-04-04T23:53:13: niter=85, f=35.7348, fbest=35.7313\nposition: x[0]=2.47662 x[1]=0.246639 x[2]=0.891539 x[3]=1.425 x[4]=0.710477 x[5]=0.687078 \n\n2019-04-04T23:53:13: Iteration 84: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=85, f=35.7284, fbest=35.7313\nposition: x[0]=2.4761 x[1]=0.24664 x[2]=0.892618 x[3]=1.425 x[4]=0.709994 x[5]=0.686996 \n\n2019-04-04T23:53:13: niter=86, f=35.7262, fbest=35.7284\nposition: x[0]=2.47611 x[1]=0.246637 x[2]=0.892421 x[3]=1.425 x[4]=0.710237 x[5]=0.68719 \n\n2019-04-04T23:53:13: niter=87, f=35.7298, fbest=35.7262\nposition: x[0]=2.47648 x[1]=0.246637 x[2]=0.891395 x[3]=1.425 x[4]=0.710804 x[5]=0.687424 \n\n2019-04-04T23:53:13: Iteration 86: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=87, f=35.7234, fbest=35.7262\nposition: x[0]=2.47596 x[1]=0.246638 x[2]=0.892484 x[3]=1.425 x[4]=0.710319 x[5]=0.687342 \n\n2019-04-04T23:53:13: niter=88, f=35.7213, fbest=35.7234\nposition: x[0]=2.47598 x[1]=0.246635 x[2]=0.892279 x[3]=1.425 x[4]=0.710561 x[5]=0.687535 \n\n2019-04-04T23:53:13: niter=89, f=35.725, fbest=35.7213\nposition: x[0]=2.47634 x[1]=0.246635 x[2]=0.891241 x[3]=1.425 x[4]=0.711114 x[5]=0.687762 \n\n2019-04-04T23:53:13: Iteration 88: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=89, f=35.7186, fbest=35.7213\nposition: x[0]=2.47583 x[1]=0.246636 x[2]=0.892338 x[3]=1.425 x[4]=0.71064 x[5]=0.687686 \n\n2019-04-04T23:53:13: niter=90, f=35.7165, fbest=35.7186\nposition: x[0]=2.47582 x[1]=0.246633 x[2]=0.892124 x[3]=1.425 x[4]=0.710875 x[5]=0.687875 \n\n2019-04-04T23:53:13: niter=91, f=35.7204, fbest=35.7165\nposition: x[0]=2.47617 x[1]=0.246633 x[2]=0.891075 x[3]=1.425 x[4]=0.711423 x[5]=0.688096 \n\n2019-04-04T23:53:13: Iteration 90: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=91, f=35.7139, fbest=35.7165\nposition: x[0]=2.47567 x[1]=0.246633 x[2]=0.892179 x[3]=1.425 x[4]=0.710952 x[5]=0.688024 \n\n2019-04-04T23:53:13: niter=92, f=35.7119, fbest=35.7139\nposition: x[0]=2.47567 x[1]=0.246631 x[2]=0.89196 x[3]=1.425 x[4]=0.711185 x[5]=0.68821 \n\n2019-04-04T23:53:13: niter=93, f=35.7159, fbest=35.7119\nposition: x[0]=2.47602 x[1]=0.246632 x[2]=0.890903 x[3]=1.425 x[4]=0.711726 x[5]=0.688426 \n\n2019-04-04T23:53:13: Iteration 92: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=93, f=35.7093, fbest=35.7119\nposition: x[0]=2.47552 x[1]=0.246632 x[2]=0.892012 x[3]=1.425 x[4]=0.71126 x[5]=0.688358 \n\n2019-04-04T23:53:13: niter=94, f=35.7075, fbest=35.7093\nposition: x[0]=2.47551 x[1]=0.24663 x[2]=0.891789 x[3]=1.425 x[4]=0.71149 x[5]=0.688542 \n\n2019-04-04T23:53:13: niter=95, f=35.7117, fbest=35.7075\nposition: x[0]=2.47592 x[1]=0.246634 x[2]=0.89073 x[3]=1.425 x[4]=0.712037 x[5]=0.688759 \n\n2019-04-04T23:53:13: Iteration 94: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=95, f=35.7049, fbest=35.7075\nposition: x[0]=2.47538 x[1]=0.246631 x[2]=0.89184 x[3]=1.425 x[4]=0.711568 x[5]=0.688689 \n\n2019-04-04T23:53:13: niter=96, f=35.703, fbest=35.7049\nposition: x[0]=2.47534 x[1]=0.246629 x[2]=0.891613 x[3]=1.425 x[4]=0.711794 x[5]=0.68887 \n\n2019-04-04T23:53:13: niter=97, f=35.7073, fbest=35.703\nposition: x[0]=2.47569 x[1]=0.24663 x[2]=0.890545 x[3]=1.425 x[4]=0.712324 x[5]=0.689076 \n\n2019-04-04T23:53:13: Iteration 96: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=97, f=35.7005, fbest=35.703\nposition: x[0]=2.47519 x[1]=0.24663 x[2]=0.891661 x[3]=1.425 x[4]=0.711867 x[5]=0.689015 \n\n2019-04-04T23:53:13: niter=98, f=35.6987, fbest=35.7005\nposition: x[0]=2.47523 x[1]=0.24663 x[2]=0.891481 x[3]=1.425 x[4]=0.7121 x[5]=0.689194 \n\n2019-04-04T23:53:13: niter=99, f=35.7031, fbest=35.6987\nposition: x[0]=2.47557 x[1]=0.246631 x[2]=0.890398 x[3]=1.425 x[4]=0.712621 x[5]=0.689395 \n\n2019-04-04T23:53:13: Iteration 98: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=99, f=35.6962, fbest=35.6987\nposition: x[0]=2.47507 x[1]=0.24663 x[2]=0.891524 x[3]=1.425 x[4]=0.71217 x[5]=0.689338 \n\n2019-04-04T23:53:13: niter=100, f=35.6946, fbest=35.6962\nposition: x[0]=2.47507 x[1]=0.246629 x[2]=0.891286 x[3]=1.425 x[4]=0.712379 x[5]=0.689513 \n\n2019-04-04T23:53:13: niter=101, f=35.6993, fbest=35.6946\nposition: x[0]=2.47549 x[1]=0.246635 x[2]=0.890211 x[3]=1.425 x[4]=0.712916 x[5]=0.689718 \n\n2019-04-04T23:53:13: Iteration 100: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=101, f=35.6922, fbest=35.6946\nposition: x[0]=2.47494 x[1]=0.246631 x[2]=0.891331 x[3]=1.425 x[4]=0.712455 x[5]=0.689656 \n\n2019-04-04T23:53:13: niter=102, f=35.6907, fbest=35.6922\nposition: x[0]=2.47497 x[1]=0.246629 x[2]=0.891099 x[3]=1.425 x[4]=0.712683 x[5]=0.689834 \n\n2019-04-04T23:53:13: niter=103, f=35.6952, fbest=35.6907\nposition: x[0]=2.47529 x[1]=0.246631 x[2]=0.890022 x[3]=1.425 x[4]=0.713193 x[5]=0.690028 \n\n2019-04-04T23:53:13: Iteration 102: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=103, f=35.6882, fbest=35.6907\nposition: x[0]=2.47481 x[1]=0.24663 x[2]=0.891145 x[3]=1.425 x[4]=0.71275 x[5]=0.689976 \n\n2019-04-04T23:53:13: niter=104, f=35.6882, fbest=35.6882\nposition: x[0]=2.47492 x[1]=0.246632 x[2]=0.890878 x[3]=1.425 x[4]=0.712552 x[5]=0.690079 \n\n2019-04-04T23:53:13: Iteration 103: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=104, f=35.6869, fbest=35.6882\nposition: x[0]=2.4747 x[1]=0.246631 x[2]=0.891204 x[3]=1.425 x[4]=0.712665 x[5]=0.690055 \n\n2019-04-04T23:53:13: niter=105, f=35.6853, fbest=35.6869\nposition: x[0]=2.47462 x[1]=0.24663 x[2]=0.891205 x[3]=1.425 x[4]=0.712757 x[5]=0.690169 \n\n2019-04-04T23:53:13: niter=106, f=35.6842, fbest=35.6853\nposition: x[0]=2.47468 x[1]=0.246628 x[2]=0.890934 x[3]=1.425 x[4]=0.712999 x[5]=0.690308 \n\n2019-04-04T23:53:13: niter=107, f=35.6892, fbest=35.6842\nposition: x[0]=2.47507 x[1]=0.246629 x[2]=0.889817 x[3]=1.425 x[4]=0.713531 x[5]=0.690466 \n\n2019-04-04T23:53:13: Iteration 106: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=107, f=35.6822, fbest=35.6842\nposition: x[0]=2.47456 x[1]=0.246628 x[2]=0.890958 x[3]=1.425 x[4]=0.713077 x[5]=0.690435 \n\n2019-04-04T23:53:13: niter=108, f=35.6811, fbest=35.6822\nposition: x[0]=2.47462 x[1]=0.246627 x[2]=0.890704 x[3]=1.425 x[4]=0.713316 x[5]=0.690593 \n\n2019-04-04T23:53:13: niter=109, f=35.686, fbest=35.6811\nposition: x[0]=2.47497 x[1]=0.24663 x[2]=0.889611 x[3]=1.425 x[4]=0.713827 x[5]=0.690762 \n\n2019-04-04T23:53:13: Iteration 108: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=109, f=35.6789, fbest=35.6811\nposition: x[0]=2.47448 x[1]=0.246628 x[2]=0.890741 x[3]=1.425 x[4]=0.713385 x[5]=0.690727 \n\n2019-04-04T23:53:13: niter=110, f=35.6776, fbest=35.6789\nposition: x[0]=2.47447 x[1]=0.246627 x[2]=0.890498 x[3]=1.425 x[4]=0.7136 x[5]=0.690886 \n\n2019-04-04T23:53:13: niter=111, f=35.6826, fbest=35.6776\nposition: x[0]=2.4748 x[1]=0.24663 x[2]=0.889413 x[3]=1.425 x[4]=0.714103 x[5]=0.691055 \n\n2019-04-04T23:53:13: Iteration 110: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=111, f=35.6753, fbest=35.6776\nposition: x[0]=2.47431 x[1]=0.246628 x[2]=0.890539 x[3]=1.425 x[4]=0.713666 x[5]=0.691021 \n\n2019-04-04T23:53:13: niter=112, f=35.6741, fbest=35.6753\nposition: x[0]=2.4743 x[1]=0.246627 x[2]=0.8903 x[3]=1.425 x[4]=0.713877 x[5]=0.691181 \n\n2019-04-04T23:53:13: niter=113, f=35.6792, fbest=35.6741\nposition: x[0]=2.47462 x[1]=0.246624 x[2]=0.889225 x[3]=1.425 x[4]=0.714375 x[5]=0.691346 \n\n2019-04-04T23:53:13: Iteration 112: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=113, f=35.6718, fbest=35.6741\nposition: x[0]=2.47415 x[1]=0.246627 x[2]=0.890344 x[3]=1.425 x[4]=0.713941 x[5]=0.691315 \n\n2019-04-04T23:53:13: niter=114, f=35.6704, fbest=35.6718\nposition: x[0]=2.47407 x[1]=0.246626 x[2]=0.890106 x[3]=1.425 x[4]=0.714151 x[5]=0.691471 \n\n2019-04-04T23:53:13: niter=115, f=35.6757, fbest=35.6704\nposition: x[0]=2.47441 x[1]=0.246629 x[2]=0.889028 x[3]=1.425 x[4]=0.714645 x[5]=0.691632 \n\n2019-04-04T23:53:13: Iteration 114: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=115, f=35.6682, fbest=35.6704\nposition: x[0]=2.47392 x[1]=0.246627 x[2]=0.890149 x[3]=1.425 x[4]=0.714215 x[5]=0.691605 \n\n2019-04-04T23:53:13: niter=116, f=35.6671, fbest=35.6682\nposition: x[0]=2.47391 x[1]=0.246626 x[2]=0.889914 x[3]=1.425 x[4]=0.714421 x[5]=0.691761 \n\n2019-04-04T23:53:13: niter=117, f=35.6724, fbest=35.6671\nposition: x[0]=2.47426 x[1]=0.246629 x[2]=0.888842 x[3]=1.425 x[4]=0.71491 x[5]=0.691918 \n\n2019-04-04T23:53:13: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=117, f=35.6649, fbest=35.6671\nposition: x[0]=2.47376 x[1]=0.246627 x[2]=0.88996 x[3]=1.425 x[4]=0.714483 x[5]=0.691893 \n\n2019-04-04T23:53:13: niter=118, f=35.6637, fbest=35.6649\nposition: x[0]=2.47375 x[1]=0.246626 x[2]=0.889728 x[3]=1.425 x[4]=0.714686 x[5]=0.692048 \n\n2019-04-04T23:53:13: niter=119, f=35.6692, fbest=35.6637\nposition: x[0]=2.47412 x[1]=0.246629 x[2]=0.888655 x[3]=1.425 x[4]=0.715135 x[5]=0.692192 \n\n2019-04-04T23:53:13: Iteration 118: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=119, f=35.6616, fbest=35.6637\nposition: x[0]=2.4736 x[1]=0.246627 x[2]=0.889773 x[3]=1.425 x[4]=0.714736 x[5]=0.692179 \n\n2019-04-04T23:53:13: niter=120, f=35.6605, fbest=35.6616\nposition: x[0]=2.4736 x[1]=0.246626 x[2]=0.889543 x[3]=1.425 x[4]=0.714938 x[5]=0.69233 \n\n2019-04-04T23:53:13: niter=121, f=35.6661, fbest=35.6605\nposition: x[0]=2.47395 x[1]=0.246629 x[2]=0.888476 x[3]=1.425 x[4]=0.71542 x[5]=0.692479 \n\n2019-04-04T23:53:13: Iteration 120: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=121, f=35.6583, fbest=35.6605\nposition: x[0]=2.47345 x[1]=0.246627 x[2]=0.88959 x[3]=1.425 x[4]=0.714998 x[5]=0.692461 \n\n2019-04-04T23:53:13: niter=122, f=35.6573, fbest=35.6583\nposition: x[0]=2.47344 x[1]=0.246627 x[2]=0.889361 x[3]=1.425 x[4]=0.715198 x[5]=0.692611 \n\n2019-04-04T23:53:13: niter=123, f=35.663, fbest=35.6573\nposition: x[0]=2.47379 x[1]=0.246629 x[2]=0.888298 x[3]=1.425 x[4]=0.715675 x[5]=0.692756 \n\n2019-04-04T23:53:13: Iteration 122: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=123, f=35.6552, fbest=35.6573\nposition: x[0]=2.47329 x[1]=0.246628 x[2]=0.88941 x[3]=1.425 x[4]=0.715256 x[5]=0.692741 \n\n2019-04-04T23:53:13: niter=124, f=35.6542, fbest=35.6552\nposition: x[0]=2.47329 x[1]=0.246627 x[2]=0.889183 x[3]=1.425 x[4]=0.715453 x[5]=0.692889 \n\n2019-04-04T23:53:13: niter=125, f=35.6599, fbest=35.6542\nposition: x[0]=2.47364 x[1]=0.24663 x[2]=0.888122 x[3]=1.425 x[4]=0.715927 x[5]=0.69303 \n\n2019-04-04T23:53:13: Iteration 124: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=125, f=35.652, fbest=35.6542\nposition: x[0]=2.47313 x[1]=0.246628 x[2]=0.889232 x[3]=1.425 x[4]=0.715511 x[5]=0.693018 \n\n2019-04-04T23:53:13: niter=126, f=35.6511, fbest=35.652\nposition: x[0]=2.47313 x[1]=0.246627 x[2]=0.889007 x[3]=1.425 x[4]=0.715706 x[5]=0.693164 \n\n2019-04-04T23:53:13: niter=127, f=35.6574, fbest=35.6511\nposition: x[0]=2.47334 x[1]=0.246556 x[2]=0.888003 x[3]=1.425 x[4]=0.716184 x[5]=0.693294 \n\n2019-04-04T23:53:13: Iteration 126: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=127, f=35.6491, fbest=35.6511\nposition: x[0]=2.47296 x[1]=0.246604 x[2]=0.889064 x[3]=1.425 x[4]=0.715763 x[5]=0.693292 \n\n2019-04-04T23:53:13: niter=128, f=35.6481, fbest=35.6491\nposition: x[0]=2.47294 x[1]=0.246608 x[2]=0.888849 x[3]=1.425 x[4]=0.715957 x[5]=0.693435 \n\n2019-04-04T23:53:13: niter=129, f=35.655, fbest=35.6481\nposition: x[0]=2.47384 x[1]=0.246656 x[2]=0.887556 x[3]=1.425 x[4]=0.716678 x[5]=0.693787 \n\n2019-04-04T23:53:13: Iteration 128: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=129, f=35.6456, fbest=35.6481\nposition: x[0]=2.47294 x[1]=0.246615 x[2]=0.888883 x[3]=1.425 x[4]=0.716068 x[5]=0.693629 \n\n2019-04-04T23:53:13: niter=130, f=35.6447, fbest=35.6456\nposition: x[0]=2.47291 x[1]=0.246617 x[2]=0.888656 x[3]=1.425 x[4]=0.716249 x[5]=0.693768 \n\n2019-04-04T23:53:13: niter=131, f=35.6507, fbest=35.6447\nposition: x[0]=2.47323 x[1]=0.246618 x[2]=0.88761 x[3]=1.425 x[4]=0.71671 x[5]=0.693895 \n\n2019-04-04T23:53:13: Iteration 130: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=131, f=35.6426, fbest=35.6447\nposition: x[0]=2.47275 x[1]=0.246618 x[2]=0.888711 x[3]=1.425 x[4]=0.716303 x[5]=0.693894 \n\n2019-04-04T23:53:13: niter=132, f=35.6417, fbest=35.6426\nposition: x[0]=2.47273 x[1]=0.246619 x[2]=0.888492 x[3]=1.425 x[4]=0.716491 x[5]=0.694034 \n\n2019-04-04T23:53:13: niter=133, f=35.646, fbest=35.6417\nposition: x[0]=2.47213 x[1]=0.246617 x[2]=0.887303 x[3]=1.425 x[4]=0.716992 x[5]=0.694122 \n\n2019-04-04T23:53:13: Iteration 132: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=133, f=35.6392, fbest=35.6417\nposition: x[0]=2.47229 x[1]=0.246621 x[2]=0.888513 x[3]=1.425 x[4]=0.71655 x[5]=0.694154 \n\n2019-04-04T23:53:13: niter=134, f=35.6387, fbest=35.6392\nposition: x[0]=2.47238 x[1]=0.246665 x[2]=0.888251 x[3]=1.425 x[4]=0.716742 x[5]=0.694288 \n\n2019-04-04T23:53:13: niter=135, f=35.6485, fbest=35.6387\nposition: x[0]=2.47389 x[1]=0.246754 x[2]=0.887318 x[3]=1.425 x[4]=0.717556 x[5]=0.694562 \n\n2019-04-04T23:53:13: Iteration 134: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=135, f=35.6375, fbest=35.6387\nposition: x[0]=2.47259 x[1]=0.246687 x[2]=0.888313 x[3]=1.425 x[4]=0.716902 x[5]=0.694429 \n\n2019-04-04T23:53:13: niter=136, f=35.6365, fbest=35.6375\nposition: x[0]=2.47258 x[1]=0.246675 x[2]=0.888088 x[3]=1.425 x[4]=0.717062 x[5]=0.694588 \n\n2019-04-04T23:53:13: niter=137, f=35.639, fbest=35.6365\nposition: x[0]=2.47041 x[1]=0.246574 x[2]=0.886915 x[3]=1.425 x[4]=0.716883 x[5]=0.694401 \n\n2019-04-04T23:53:13: Iteration 136: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=137, f=35.6332, fbest=35.6365\nposition: x[0]=2.4716 x[1]=0.246644 x[2]=0.888114 x[3]=1.425 x[4]=0.716913 x[5]=0.694682 \n\n2019-04-04T23:53:13: niter=138, f=35.6292, fbest=35.6332\nposition: x[0]=2.47299 x[1]=0.246765 x[2]=0.890065 x[3]=1.425 x[4]=0.717471 x[5]=0.695135 \n\n2019-04-04T23:53:13: niter=139, f=35.6328, fbest=35.6292\nposition: x[0]=2.47358 x[1]=0.24671 x[2]=0.888345 x[3]=1.425 x[4]=0.717885 x[5]=0.695208 \n\n2019-04-04T23:53:13: Iteration 138: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=139, f=35.628, fbest=35.6292\nposition: x[0]=2.473 x[1]=0.246745 x[2]=0.889851 x[3]=1.425 x[4]=0.717531 x[5]=0.695221 \n\n2019-04-04T23:53:13: niter=140, f=35.6272, fbest=35.628\nposition: x[0]=2.47314 x[1]=0.246715 x[2]=0.889265 x[3]=1.425 x[4]=0.717699 x[5]=0.695326 \n\n2019-04-04T23:53:13: niter=141, f=35.6326, fbest=35.6272\nposition: x[0]=2.4735 x[1]=0.246684 x[2]=0.887788 x[3]=1.425 x[4]=0.718092 x[5]=0.695428 \n\n2019-04-04T23:53:13: Iteration 140: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=141, f=35.6259, fbest=35.6272\nposition: x[0]=2.47303 x[1]=0.246704 x[2]=0.889156 x[3]=1.425 x[4]=0.717742 x[5]=0.695435 \n\n2019-04-04T23:53:13: niter=142, f=35.6254, fbest=35.6259\nposition: x[0]=2.47305 x[1]=0.246686 x[2]=0.888702 x[3]=1.425 x[4]=0.717897 x[5]=0.695558 \n\n2019-04-04T23:53:13: niter=143, f=35.6315, fbest=35.6254\nposition: x[0]=2.47334 x[1]=0.246669 x[2]=0.88734 x[3]=1.425 x[4]=0.71829 x[5]=0.695666 \n\n2019-04-04T23:53:13: Iteration 142: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=143, f=35.6239, fbest=35.6254\nposition: x[0]=2.4729 x[1]=0.24668 x[2]=0.888643 x[3]=1.425 x[4]=0.717936 x[5]=0.695674 \n\n2019-04-04T23:53:13: niter=144, f=35.6234, fbest=35.6239\nposition: x[0]=2.47286 x[1]=0.246669 x[2]=0.888266 x[3]=1.425 x[4]=0.718091 x[5]=0.695801 \n\n2019-04-04T23:53:13: niter=145, f=35.6296, fbest=35.6234\nposition: x[0]=2.47312 x[1]=0.246659 x[2]=0.887019 x[3]=1.425 x[4]=0.718489 x[5]=0.695903 \n\n2019-04-04T23:53:13: Iteration 144: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=145, f=35.6217, fbest=35.6234\nposition: x[0]=2.4727 x[1]=0.246665 x[2]=0.888249 x[3]=1.425 x[4]=0.718129 x[5]=0.695919 \n\n2019-04-04T23:53:13: niter=146, f=35.6212, fbest=35.6217\nposition: x[0]=2.47264 x[1]=0.246658 x[2]=0.887922 x[3]=1.425 x[4]=0.718286 x[5]=0.696044 \n\n2019-04-04T23:53:13: niter=147, f=35.6276, fbest=35.6212\nposition: x[0]=2.47289 x[1]=0.246652 x[2]=0.886727 x[3]=1.425 x[4]=0.718687 x[5]=0.696142 \n\n2019-04-04T23:53:13: Iteration 146: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=147, f=35.6195, fbest=35.6212\nposition: x[0]=2.47247 x[1]=0.246656 x[2]=0.887922 x[3]=1.425 x[4]=0.718325 x[5]=0.696161 \n\n2019-04-04T23:53:13: niter=148, f=35.6191, fbest=35.6195\nposition: x[0]=2.47241 x[1]=0.246652 x[2]=0.88762 x[3]=1.425 x[4]=0.718485 x[5]=0.696283 \n\n2019-04-04T23:53:13: niter=149, f=35.6257, fbest=35.6191\nposition: x[0]=2.47267 x[1]=0.24665 x[2]=0.886464 x[3]=1.425 x[4]=0.718893 x[5]=0.696371 \n\n2019-04-04T23:53:13: Iteration 148: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=149, f=35.6173, fbest=35.6191\nposition: x[0]=2.47224 x[1]=0.246651 x[2]=0.887636 x[3]=1.425 x[4]=0.718525 x[5]=0.696398 \n\n2019-04-04T23:53:13: niter=150, f=35.6169, fbest=35.6173\nposition: x[0]=2.47217 x[1]=0.246648 x[2]=0.887365 x[3]=1.425 x[4]=0.718728 x[5]=0.696524 \n\n2019-04-04T23:53:13: niter=151, f=35.6236, fbest=35.6169\nposition: x[0]=2.47243 x[1]=0.246647 x[2]=0.886236 x[3]=1.425 x[4]=0.719131 x[5]=0.696612 \n\n2019-04-04T23:53:13: Iteration 150: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=151, f=35.6151, fbest=35.6169\nposition: x[0]=2.472 x[1]=0.246648 x[2]=0.887391 x[3]=1.425 x[4]=0.718766 x[5]=0.69664 \n\n2019-04-04T23:53:13: niter=152, f=35.6147, fbest=35.6151\nposition: x[0]=2.47193 x[1]=0.246645 x[2]=0.887128 x[3]=1.425 x[4]=0.718926 x[5]=0.696759 \n\n2019-04-04T23:53:13: niter=153, f=35.6219, fbest=35.6147\nposition: x[0]=2.47219 x[1]=0.246625 x[2]=0.885904 x[3]=1.425 x[4]=0.719205 x[5]=0.69681 \n\n2019-04-04T23:53:13: Iteration 152: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=153, f=35.613, fbest=35.6147\nposition: x[0]=2.47175 x[1]=0.246639 x[2]=0.887122 x[3]=1.425 x[4]=0.718929 x[5]=0.696871 \n\n2019-04-04T23:53:13: niter=154, f=35.6127, fbest=35.613\nposition: x[0]=2.47172 x[1]=0.246638 x[2]=0.886872 x[3]=1.425 x[4]=0.719095 x[5]=0.696982 \n\n2019-04-04T23:53:13: niter=155, f=35.6197, fbest=35.6127\nposition: x[0]=2.47202 x[1]=0.246641 x[2]=0.885794 x[3]=1.425 x[4]=0.71951 x[5]=0.697052 \n\n2019-04-04T23:53:13: Iteration 154: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=155, f=35.6109, fbest=35.6127\nposition: x[0]=2.47156 x[1]=0.246639 x[2]=0.886915 x[3]=1.425 x[4]=0.719137 x[5]=0.697093 \n\n2019-04-04T23:53:13: niter=156, f=35.6106, fbest=35.6109\nposition: x[0]=2.47152 x[1]=0.246638 x[2]=0.886679 x[3]=1.425 x[4]=0.719303 x[5]=0.697204 \n\n2019-04-04T23:53:13: niter=157, f=35.6177, fbest=35.6106\nposition: x[0]=2.4718 x[1]=0.246624 x[2]=0.885624 x[3]=1.425 x[4]=0.719718 x[5]=0.697269 \n\n2019-04-04T23:53:13: Iteration 156: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=157, f=35.6089, fbest=35.6106\nposition: x[0]=2.47136 x[1]=0.246634 x[2]=0.886727 x[3]=1.425 x[4]=0.719345 x[5]=0.697314 \n\n2019-04-04T23:53:13: niter=158, f=35.6086, fbest=35.6089\nposition: x[0]=2.47133 x[1]=0.246634 x[2]=0.886499 x[3]=1.425 x[4]=0.71951 x[5]=0.697423 \n\n2019-04-04T23:53:13: niter=159, f=35.6144, fbest=35.6086\nposition: x[0]=2.47165 x[1]=0.246635 x[2]=0.88578 x[3]=1.425 x[4]=0.719998 x[5]=0.697489 \n\n2019-04-04T23:53:13: Iteration 158: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=159, f=35.6066, fbest=35.6086\nposition: x[0]=2.47117 x[1]=0.246635 x[2]=0.886652 x[3]=1.425 x[4]=0.719573 x[5]=0.697532 \n\n2019-04-04T23:53:13: niter=160, f=35.6064, fbest=35.6066\nposition: x[0]=2.47115 x[1]=0.246634 x[2]=0.886413 x[3]=1.425 x[4]=0.719735 x[5]=0.69764 \n\n2019-04-04T23:53:13: niter=161, f=35.6136, fbest=35.6064\nposition: x[0]=2.47147 x[1]=0.246632 x[2]=0.885343 x[3]=1.425 x[4]=0.72014 x[5]=0.697702 \n\n2019-04-04T23:53:13: Iteration 160: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=161, f=35.6047, fbest=35.6064\nposition: x[0]=2.47099 x[1]=0.246633 x[2]=0.886457 x[3]=1.425 x[4]=0.719775 x[5]=0.69775 \n\n2019-04-04T23:53:13: niter=162, f=35.6045, fbest=35.6047\nposition: x[0]=2.47097 x[1]=0.246632 x[2]=0.886226 x[3]=1.425 x[4]=0.719935 x[5]=0.697856 \n\n2019-04-04T23:53:13: niter=163, f=35.613, fbest=35.6045\nposition: x[0]=2.47173 x[1]=0.246659 x[2]=0.885198 x[3]=1.425 x[4]=0.720448 x[5]=0.69797 \n\n2019-04-04T23:53:13: Iteration 162: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=163, f=35.603, fbest=35.6045\nposition: x[0]=2.47094 x[1]=0.246641 x[2]=0.886282 x[3]=1.425 x[4]=0.720011 x[5]=0.697971 \n\n2019-04-04T23:53:13: niter=164, f=35.6027, fbest=35.603\nposition: x[0]=2.4709 x[1]=0.246639 x[2]=0.886062 x[3]=1.425 x[4]=0.720162 x[5]=0.698084 \n\n2019-04-04T23:53:13: niter=165, f=35.61, fbest=35.6027\nposition: x[0]=2.47123 x[1]=0.24664 x[2]=0.885007 x[3]=1.425 x[4]=0.720554 x[5]=0.698147 \n\n2019-04-04T23:53:13: Iteration 164: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=165, f=35.6009, fbest=35.6027\nposition: x[0]=2.47074 x[1]=0.246639 x[2]=0.886114 x[3]=1.425 x[4]=0.720197 x[5]=0.698195 \n\n2019-04-04T23:53:13: niter=166, f=35.6007, fbest=35.6009\nposition: x[0]=2.47072 x[1]=0.246638 x[2]=0.885896 x[3]=1.425 x[4]=0.720351 x[5]=0.698303 \n\n2019-04-04T23:53:13: niter=167, f=35.6081, fbest=35.6007\nposition: x[0]=2.47106 x[1]=0.246639 x[2]=0.884853 x[3]=1.425 x[4]=0.720745 x[5]=0.698358 \n\n2019-04-04T23:53:13: Iteration 166: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=167, f=35.599, fbest=35.6007\nposition: x[0]=2.47056 x[1]=0.246638 x[2]=0.88595 x[3]=1.425 x[4]=0.720387 x[5]=0.698411 \n\n2019-04-04T23:53:13: niter=168, f=35.5993, fbest=35.599\nposition: x[0]=2.47037 x[1]=0.246637 x[2]=0.885455 x[3]=1.425 x[4]=0.720529 x[5]=0.698524 \n\n2019-04-04T23:53:13: Iteration 167: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=168, f=35.5979, fbest=35.599\nposition: x[0]=2.4704 x[1]=0.246639 x[2]=0.885936 x[3]=1.425 x[4]=0.720392 x[5]=0.698481 \n\n2019-04-04T23:53:13: niter=169, f=35.5967, fbest=35.5979\nposition: x[0]=2.47025 x[1]=0.246638 x[2]=0.885976 x[3]=1.425 x[4]=0.720446 x[5]=0.698569 \n\n2019-04-04T23:53:13: niter=170, f=35.5975, fbest=35.5967\nposition: x[0]=2.47031 x[1]=0.246635 x[2]=0.885524 x[3]=1.425 x[4]=0.720544 x[5]=0.698644 \n\n2019-04-04T23:53:13: Iteration 169: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=170, f=35.596, fbest=35.5967\nposition: x[0]=2.47016 x[1]=0.246638 x[2]=0.885971 x[3]=1.425 x[4]=0.720442 x[5]=0.698628 \n\n2019-04-04T23:53:13: niter=171, f=35.5952, fbest=35.596\nposition: x[0]=2.4701 x[1]=0.246636 x[2]=0.885966 x[3]=1.425 x[4]=0.720506 x[5]=0.698704 \n\n2019-04-04T23:53:13: niter=172, f=35.5956, fbest=35.5952\nposition: x[0]=2.4702 x[1]=0.246632 x[2]=0.885689 x[3]=1.425 x[4]=0.720691 x[5]=0.698772 \n\n2019-04-04T23:53:13: Iteration 171: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=172, f=35.5945, fbest=35.5952\nposition: x[0]=2.47003 x[1]=0.246636 x[2]=0.886009 x[3]=1.425 x[4]=0.720526 x[5]=0.698758 \n\n2019-04-04T23:53:13: niter=173, f=35.5938, fbest=35.5945\nposition: x[0]=2.46999 x[1]=0.246634 x[2]=0.885985 x[3]=1.425 x[4]=0.720596 x[5]=0.698826 \n\n2019-04-04T23:53:13: niter=174, f=35.5938, fbest=35.5938\nposition: x[0]=2.4697 x[1]=0.246627 x[2]=0.885662 x[3]=1.425 x[4]=0.720799 x[5]=0.698874 \n\n2019-04-04T23:53:13: niter=175, f=35.6016, fbest=35.5938\nposition: x[0]=2.47024 x[1]=0.246626 x[2]=0.884576 x[3]=1.425 x[4]=0.721228 x[5]=0.698879 \n\n2019-04-04T23:53:13: Iteration 174: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=175, f=35.5928, fbest=35.5938\nposition: x[0]=2.46963 x[1]=0.246626 x[2]=0.885684 x[3]=1.425 x[4]=0.720854 x[5]=0.698958 \n\n2019-04-04T23:53:13: niter=176, f=35.5932, fbest=35.5928\nposition: x[0]=2.46973 x[1]=0.246623 x[2]=0.885425 x[3]=1.425 x[4]=0.721028 x[5]=0.699036 \n\n2019-04-04T23:53:13: Iteration 175: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=176, f=35.592, fbest=35.5928\nposition: x[0]=2.46955 x[1]=0.246626 x[2]=0.885734 x[3]=1.425 x[4]=0.72087 x[5]=0.699016 \n\n2019-04-04T23:53:13: niter=177, f=35.5916, fbest=35.592\nposition: x[0]=2.4695 x[1]=0.246625 x[2]=0.885561 x[3]=1.425 x[4]=0.720931 x[5]=0.699095 \n\n2019-04-04T23:53:13: niter=178, f=35.5921, fbest=35.5916\nposition: x[0]=2.46962 x[1]=0.246622 x[2]=0.885305 x[3]=1.425 x[4]=0.721112 x[5]=0.699164 \n\n2019-04-04T23:53:13: Iteration 177: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=178, f=35.5909, fbest=35.5916\nposition: x[0]=2.46943 x[1]=0.246625 x[2]=0.885611 x[3]=1.425 x[4]=0.72095 x[5]=0.69915 \n\n2019-04-04T23:53:13: niter=179, f=35.5903, fbest=35.5909\nposition: x[0]=2.4694 x[1]=0.246623 x[2]=0.885603 x[3]=1.425 x[4]=0.721017 x[5]=0.69922 \n\n2019-04-04T23:53:13: niter=180, f=35.5909, fbest=35.5903\nposition: x[0]=2.46966 x[1]=0.24663 x[2]=0.885308 x[3]=1.425 x[4]=0.721225 x[5]=0.699298 \n\n2019-04-04T23:53:13: Iteration 179: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=180, f=35.5896, fbest=35.5903\nposition: x[0]=2.46937 x[1]=0.246624 x[2]=0.885642 x[3]=1.425 x[4]=0.72104 x[5]=0.699279 \n\n2019-04-04T23:53:13: niter=181, f=35.589, fbest=35.5896\nposition: x[0]=2.46935 x[1]=0.246622 x[2]=0.88562 x[3]=1.425 x[4]=0.72111 x[5]=0.699344 \n\n2019-04-04T23:53:13: niter=182, f=35.5887, fbest=35.589\nposition: x[0]=2.46955 x[1]=0.246617 x[2]=0.885784 x[3]=1.425 x[4]=0.721308 x[5]=0.699381 \n\n2019-04-04T23:53:13: niter=183, f=35.5973, fbest=35.5887\nposition: x[0]=2.47063 x[1]=0.24662 x[2]=0.884726 x[3]=1.425 x[4]=0.721695 x[5]=0.699392 \n\n2019-04-04T23:53:13: Iteration 182: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=183, f=35.5881, fbest=35.5887\nposition: x[0]=2.46964 x[1]=0.246616 x[2]=0.885801 x[3]=1.425 x[4]=0.721358 x[5]=0.699462 \n\n2019-04-04T23:53:13: niter=184, f=35.5897, fbest=35.5881\nposition: x[0]=2.46966 x[1]=0.246617 x[2]=0.885052 x[3]=1.425 x[4]=0.721511 x[5]=0.699551 \n\n2019-04-04T23:53:13: Iteration 183: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=184, f=35.5876, fbest=35.5881\nposition: x[0]=2.46956 x[1]=0.246616 x[2]=0.8857 x[3]=1.425 x[4]=0.721369 x[5]=0.69952 \n\n2019-04-04T23:53:13: niter=185, f=35.5869, fbest=35.5876\nposition: x[0]=2.4695 x[1]=0.246616 x[2]=0.88568 x[3]=1.425 x[4]=0.721425 x[5]=0.699595 \n\n2019-04-04T23:53:13: niter=186, f=35.5875, fbest=35.5869\nposition: x[0]=2.46959 x[1]=0.246614 x[2]=0.88537 x[3]=1.425 x[4]=0.721596 x[5]=0.699659 \n\n2019-04-04T23:53:13: Iteration 185: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=186, f=35.5863, fbest=35.5869\nposition: x[0]=2.46942 x[1]=0.246616 x[2]=0.885712 x[3]=1.425 x[4]=0.721442 x[5]=0.699648 \n\n2019-04-04T23:53:13: niter=187, f=35.5857, fbest=35.5863\nposition: x[0]=2.46938 x[1]=0.246615 x[2]=0.885683 x[3]=1.425 x[4]=0.721504 x[5]=0.699715 \n\n2019-04-04T23:53:13: niter=188, f=35.5867, fbest=35.5857\nposition: x[0]=2.46973 x[1]=0.246614 x[2]=0.885368 x[3]=1.425 x[4]=0.721673 x[5]=0.699777 \n\n2019-04-04T23:53:13: Iteration 187: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=188, f=35.5853, fbest=35.5857\nposition: x[0]=2.46939 x[1]=0.246615 x[2]=0.88571 x[3]=1.425 x[4]=0.721522 x[5]=0.699765 \n\n2019-04-04T23:53:13: niter=189, f=35.5848, fbest=35.5853\nposition: x[0]=2.46935 x[1]=0.246614 x[2]=0.885663 x[3]=1.425 x[4]=0.721586 x[5]=0.699828 \n\n2019-04-04T23:53:13: niter=190, f=35.5853, fbest=35.5848\nposition: x[0]=2.46949 x[1]=0.246611 x[2]=0.885414 x[3]=1.425 x[4]=0.721766 x[5]=0.699876 \n\n2019-04-04T23:53:13: Iteration 189: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=190, f=35.5842, fbest=35.5848\nposition: x[0]=2.46929 x[1]=0.246614 x[2]=0.885714 x[3]=1.425 x[4]=0.721607 x[5]=0.699876 \n\n2019-04-04T23:53:13: niter=191, f=35.5838, fbest=35.5842\nposition: x[0]=2.46927 x[1]=0.246612 x[2]=0.885657 x[3]=1.425 x[4]=0.721673 x[5]=0.699935 \n\n2019-04-04T23:53:13: niter=192, f=35.5845, fbest=35.5838\nposition: x[0]=2.46941 x[1]=0.24661 x[2]=0.885309 x[3]=1.425 x[4]=0.721854 x[5]=0.699982 \n\n2019-04-04T23:53:13: Iteration 191: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=192, f=35.5833, fbest=35.5838\nposition: x[0]=2.46922 x[1]=0.246612 x[2]=0.885675 x[3]=1.425 x[4]=0.721694 x[5]=0.699981 \n\n2019-04-04T23:53:13: niter=193, f=35.5828, fbest=35.5833\nposition: x[0]=2.4692 x[1]=0.246612 x[2]=0.885666 x[3]=1.425 x[4]=0.721774 x[5]=0.700039 \n\n2019-04-04T23:53:13: niter=194, f=35.5835, fbest=35.5828\nposition: x[0]=2.46935 x[1]=0.246609 x[2]=0.885303 x[3]=1.425 x[4]=0.721954 x[5]=0.700083 \n\n2019-04-04T23:53:13: Iteration 193: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=194, f=35.5823, fbest=35.5828\nposition: x[0]=2.46915 x[1]=0.246612 x[2]=0.885679 x[3]=1.425 x[4]=0.721795 x[5]=0.700084 \n\n2019-04-04T23:53:13: niter=195, f=35.582, fbest=35.5823\nposition: x[0]=2.46914 x[1]=0.24661 x[2]=0.885607 x[3]=1.425 x[4]=0.721863 x[5]=0.70014 \n\n2019-04-04T23:53:13: niter=196, f=35.5828, fbest=35.582\nposition: x[0]=2.46929 x[1]=0.246608 x[2]=0.885231 x[3]=1.425 x[4]=0.722043 x[5]=0.700184 \n\n2019-04-04T23:53:13: Iteration 195: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=196, f=35.5816, fbest=35.582\nposition: x[0]=2.46909 x[1]=0.24661 x[2]=0.885617 x[3]=1.425 x[4]=0.721884 x[5]=0.700185 \n\n2019-04-04T23:53:13: niter=197, f=35.5815, fbest=35.5816\nposition: x[0]=2.46901 x[1]=0.246609 x[2]=0.885309 x[3]=1.425 x[4]=0.721931 x[5]=0.700244 \n\n2019-04-04T23:53:13: niter=198, f=35.5858, fbest=35.5815\nposition: x[0]=2.46906 x[1]=0.246616 x[2]=0.883769 x[3]=1.425 x[4]=0.722051 x[5]=0.700346 \n\n2019-04-04T23:53:13: Iteration 197: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=198, f=35.5818, fbest=35.5815\nposition: x[0]=2.46895 x[1]=0.246608 x[2]=0.884931 x[3]=1.425 x[4]=0.721932 x[5]=0.700304 \n\n2019-04-04T23:53:13: Iteration 197: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:13: niter=198, f=35.5815, fbest=35.5815\nposition: x[0]=2.46898 x[1]=0.246609 x[2]=0.885216 x[3]=1.425 x[4]=0.721928 x[5]=0.700263 \n\n2019-04-04T23:53:13: Iteration 197: Restarting iteration with increased lambda.\nLambda = 256\n\n2019-04-04T23:53:13: niter=198, f=35.5815, fbest=35.5815\nposition: x[0]=2.469 x[1]=0.246609 x[2]=0.885286 x[3]=1.425 x[4]=0.72193 x[5]=0.700249 \n\n2019-04-04T23:53:13: Iteration 197: Restarting iteration with increased lambda.\nLambda = 1024\n\n2019-04-04T23:53:13: niter=198, f=35.5815, fbest=35.5815\nposition: x[0]=2.46901 x[1]=0.246609 x[2]=0.885303 x[3]=1.425 x[4]=0.72193 x[5]=0.700246 \n\n2019-04-04T23:53:13: niter=199, f=35.5815, fbest=35.5815\nposition: x[0]=2.469 x[1]=0.246609 x[2]=0.88531 x[3]=1.425 x[4]=0.721929 x[5]=0.700248 \n\n2019-04-04T23:53:13: niter=200, f=35.5815, fbest=35.5815\nposition: x[0]=2.46901 x[1]=0.246609 x[2]=0.885291 x[3]=1.425 x[4]=0.72193 x[5]=0.700255 \n\n2019-04-04T23:53:13: niter=201, f=35.5813, fbest=35.5815\nposition: x[0]=2.46899 x[1]=0.246611 x[2]=0.885301 x[3]=1.425 x[4]=0.721931 x[5]=0.700263 \n\n2019-04-04T23:53:13: niter=202, f=35.5813, fbest=35.5813\nposition: x[0]=2.46897 x[1]=0.246611 x[2]=0.885241 x[3]=1.425 x[4]=0.721934 x[5]=0.700278 \n\n2019-04-04T23:53:13: niter=203, f=35.581, fbest=35.5813\nposition: x[0]=2.46893 x[1]=0.246611 x[2]=0.885264 x[3]=1.425 x[4]=0.721941 x[5]=0.700306 \n\n2019-04-04T23:53:13: niter=204, f=35.5807, fbest=35.581\nposition: x[0]=2.46889 x[1]=0.246655 x[2]=0.885282 x[3]=1.425 x[4]=0.721966 x[5]=0.700347 \n\n2019-04-04T23:53:13: niter=205, f=35.5796, fbest=35.5807\nposition: x[0]=2.46945 x[1]=0.246761 x[2]=0.886602 x[3]=1.425 x[4]=0.722301 x[5]=0.700681 \n\n2019-04-04T23:53:13: niter=206, f=35.5784, fbest=35.5796\nposition: x[0]=2.46975 x[1]=0.246718 x[2]=0.886003 x[3]=1.425 x[4]=0.72246 x[5]=0.700719 \n\n2019-04-04T23:53:13: niter=207, f=35.5852, fbest=35.5784\nposition: x[0]=2.47036 x[1]=0.246691 x[2]=0.884489 x[3]=1.425 x[4]=0.722829 x[5]=0.700688 \n\n2019-04-04T23:53:13: Iteration 206: Restarting iteration with increased lambda.\nLambda = 8\n\n2019-04-04T23:53:13: niter=207, f=35.5779, fbest=35.5784\nposition: x[0]=2.46974 x[1]=0.246707 x[2]=0.885864 x[3]=1.425 x[4]=0.722507 x[5]=0.700782 \n\n2019-04-04T23:53:13: niter=208, f=35.5784, fbest=35.5779\nposition: x[0]=2.46988 x[1]=0.246686 x[2]=0.885393 x[3]=1.425 x[4]=0.722653 x[5]=0.700836 \n\n2019-04-04T23:53:13: Iteration 207: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=208, f=35.5775, fbest=35.5779\nposition: x[0]=2.46969 x[1]=0.246701 x[2]=0.885844 x[3]=1.425 x[4]=0.722519 x[5]=0.70083 \n\n2019-04-04T23:53:13: niter=209, f=35.5772, fbest=35.5775\nposition: x[0]=2.46967 x[1]=0.246698 x[2]=0.885585 x[3]=1.425 x[4]=0.722568 x[5]=0.700894 \n\n2019-04-04T23:53:13: niter=210, f=35.5778, fbest=35.5772\nposition: x[0]=2.46982 x[1]=0.24668 x[2]=0.885148 x[3]=1.425 x[4]=0.722716 x[5]=0.700948 \n\n2019-04-04T23:53:13: Iteration 209: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=210, f=35.5767, fbest=35.5772\nposition: x[0]=2.46962 x[1]=0.246693 x[2]=0.885576 x[3]=1.425 x[4]=0.72258 x[5]=0.700941 \n\n2019-04-04T23:53:13: niter=211, f=35.5762, fbest=35.5767\nposition: x[0]=2.4696 x[1]=0.246684 x[2]=0.885475 x[3]=1.425 x[4]=0.722632 x[5]=0.701001 \n\n2019-04-04T23:53:13: niter=212, f=35.5785, fbest=35.5762\nposition: x[0]=2.46972 x[1]=0.246693 x[2]=0.884309 x[3]=1.425 x[4]=0.722808 x[5]=0.701105 \n\n2019-04-04T23:53:13: Iteration 211: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=212, f=35.576, fbest=35.5762\nposition: x[0]=2.46955 x[1]=0.246684 x[2]=0.88526 x[3]=1.425 x[4]=0.722648 x[5]=0.701063 \n\n2019-04-04T23:53:13: niter=213, f=35.5756, fbest=35.576\nposition: x[0]=2.46958 x[1]=0.24668 x[2]=0.885188 x[3]=1.425 x[4]=0.722719 x[5]=0.701128 \n\n2019-04-04T23:53:13: niter=214, f=35.5762, fbest=35.5756\nposition: x[0]=2.46959 x[1]=0.246663 x[2]=0.884798 x[3]=1.425 x[4]=0.722852 x[5]=0.70117 \n\n2019-04-04T23:53:13: Iteration 213: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=214, f=35.5751, fbest=35.5756\nposition: x[0]=2.46949 x[1]=0.246676 x[2]=0.885196 x[3]=1.425 x[4]=0.722726 x[5]=0.701175 \n\n2019-04-04T23:53:13: niter=215, f=35.5747, fbest=35.5751\nposition: x[0]=2.46945 x[1]=0.246669 x[2]=0.885117 x[3]=1.425 x[4]=0.722793 x[5]=0.701234 \n\n2019-04-04T23:53:13: niter=216, f=35.5751, fbest=35.5747\nposition: x[0]=2.46971 x[1]=0.246658 x[2]=0.884954 x[3]=1.425 x[4]=0.722981 x[5]=0.701304 \n\n2019-04-04T23:53:13: Iteration 215: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=216, f=35.574, fbest=35.5747\nposition: x[0]=2.46941 x[1]=0.246666 x[2]=0.885202 x[3]=1.425 x[4]=0.722811 x[5]=0.701293 \n\n2019-04-04T23:53:13: niter=217, f=35.5736, fbest=35.574\nposition: x[0]=2.46934 x[1]=0.246658 x[2]=0.885113 x[3]=1.425 x[4]=0.722856 x[5]=0.701345 \n\n2019-04-04T23:53:13: niter=218, f=35.5789, fbest=35.5736\nposition: x[0]=2.46911 x[1]=0.246577 x[2]=0.883649 x[3]=1.425 x[4]=0.722284 x[5]=0.701206 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=218, f=35.5742, fbest=35.5736\nposition: x[0]=2.46922 x[1]=0.246629 x[2]=0.884722 x[3]=1.425 x[4]=0.722665 x[5]=0.701352 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:13: niter=218, f=35.5737, fbest=35.5736\nposition: x[0]=2.4693 x[1]=0.24665 x[2]=0.885014 x[3]=1.425 x[4]=0.722804 x[5]=0.701351 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 256\n\n2019-04-04T23:53:13: niter=218, f=35.5737, fbest=35.5736\nposition: x[0]=2.46933 x[1]=0.246656 x[2]=0.885088 x[3]=1.425 x[4]=0.722842 x[5]=0.701346 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 1024\n\n2019-04-04T23:53:13: niter=218, f=35.5737, fbest=35.5736\nposition: x[0]=2.46933 x[1]=0.246657 x[2]=0.885107 x[3]=1.425 x[4]=0.722852 x[5]=0.701345 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 4096\n\n2019-04-04T23:53:13: niter=218, f=35.5736, fbest=35.5736\nposition: x[0]=2.46934 x[1]=0.246658 x[2]=0.885111 x[3]=1.425 x[4]=0.722855 x[5]=0.701345 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 16384\n\n2019-04-04T23:53:13: niter=218, f=35.5736, fbest=35.5736\nposition: x[0]=2.46934 x[1]=0.246658 x[2]=0.885113 x[3]=1.425 x[4]=0.722856 x[5]=0.701345 \n\n2019-04-04T23:53:13: Iteration 217: Restarting iteration with increased lambda.\nLambda = 65536\n\n2019-04-04T23:53:13: niter=218, f=35.5736, fbest=35.5736\nposition: x[0]=2.46934 x[1]=0.246658 x[2]=0.885113 x[3]=1.425 x[4]=0.722856 x[5]=0.701345 \n\n2019-04-04T23:53:13: Iteration 218: Objective function value and parameter change lower than tolerance (1/3). Resetting lambda.\n\n2019-04-04T23:53:13: niter=219, f=35.6223, fbest=35.5736\nposition: x[0]=2.46743 x[1]=0.246556 x[2]=0.879148 x[3]=1.425 x[4]=0.72385 x[5]=0.701059 \n\n2019-04-04T23:53:13: Iteration 218: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:13: niter=219, f=35.5774, fbest=35.5736\nposition: x[0]=2.46869 x[1]=0.246571 x[2]=0.88341 x[3]=1.425 x[4]=0.722991 x[5]=0.701408 \n\n2019-04-04T23:53:13: Iteration 218: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=219, f=35.5739, fbest=35.5736\nposition: x[0]=2.46915 x[1]=0.246629 x[2]=0.88466 x[3]=1.425 x[4]=0.722867 x[5]=0.701385 \n\n2019-04-04T23:53:13: Iteration 218: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:13: niter=219, f=35.5736, fbest=35.5736\nposition: x[0]=2.46929 x[1]=0.24665 x[2]=0.884998 x[3]=1.425 x[4]=0.722856 x[5]=0.701357 \n\n2019-04-04T23:53:13: niter=220, f=35.5734, fbest=35.5736\nposition: x[0]=2.46924 x[1]=0.246649 x[2]=0.885016 x[3]=1.425 x[4]=0.722861 x[5]=0.701383 \n\n2019-04-04T23:53:13: niter=221, f=35.573, fbest=35.5734\nposition: x[0]=2.46919 x[1]=0.246648 x[2]=0.885023 x[3]=1.425 x[4]=0.722881 x[5]=0.701424 \n\n2019-04-04T23:53:13: niter=222, f=35.5727, fbest=35.573\nposition: x[0]=2.46916 x[1]=0.246644 x[2]=0.884943 x[3]=1.425 x[4]=0.722944 x[5]=0.701472 \n\n2019-04-04T23:53:13: niter=223, f=35.5736, fbest=35.5727\nposition: x[0]=2.46929 x[1]=0.246638 x[2]=0.884554 x[3]=1.425 x[4]=0.723116 x[5]=0.701501 \n\n2019-04-04T23:53:13: Iteration 222: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=223, f=35.5723, fbest=35.5727\nposition: x[0]=2.46911 x[1]=0.246643 x[2]=0.884948 x[3]=1.425 x[4]=0.722964 x[5]=0.701513 \n\n2019-04-04T23:53:13: niter=224, f=35.572, fbest=35.5723\nposition: x[0]=2.46908 x[1]=0.246639 x[2]=0.88487 x[3]=1.425 x[4]=0.723027 x[5]=0.701561 \n\n2019-04-04T23:53:13: niter=225, f=35.5728, fbest=35.572\nposition: x[0]=2.46929 x[1]=0.246634 x[2]=0.884488 x[3]=1.425 x[4]=0.723203 x[5]=0.701625 \n\n2019-04-04T23:53:13: Iteration 224: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=225, f=35.5716, fbest=35.572\nposition: x[0]=2.46905 x[1]=0.246638 x[2]=0.884878 x[3]=1.425 x[4]=0.723047 x[5]=0.701611 \n\n2019-04-04T23:53:13: niter=226, f=35.5713, fbest=35.5716\nposition: x[0]=2.46903 x[1]=0.246637 x[2]=0.884846 x[3]=1.425 x[4]=0.723112 x[5]=0.701658 \n\n2019-04-04T23:53:13: niter=227, f=35.5722, fbest=35.5713\nposition: x[0]=2.46916 x[1]=0.246632 x[2]=0.88444 x[3]=1.425 x[4]=0.723284 x[5]=0.701685 \n\n2019-04-04T23:53:13: Iteration 226: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=227, f=35.5709, fbest=35.5713\nposition: x[0]=2.46898 x[1]=0.246636 x[2]=0.884846 x[3]=1.425 x[4]=0.723131 x[5]=0.701698 \n\n2019-04-04T23:53:13: niter=228, f=35.5719, fbest=35.5709\nposition: x[0]=2.46918 x[1]=0.246746 x[2]=0.884779 x[3]=1.425 x[4]=0.723188 x[5]=0.701714 \n\n2019-04-04T23:53:13: Iteration 227: Restarting iteration with increased lambda.\nLambda = 32\n\n2019-04-04T23:53:13: niter=228, f=35.5708, fbest=35.5709\nposition: x[0]=2.46899 x[1]=0.246666 x[2]=0.884864 x[3]=1.425 x[4]=0.723137 x[5]=0.701713 \n\n2019-04-04T23:53:13: niter=229, f=35.5705, fbest=35.5708\nposition: x[0]=2.46895 x[1]=0.246663 x[2]=0.884862 x[3]=1.425 x[4]=0.723158 x[5]=0.70175 \n\n2019-04-04T23:53:13: niter=230, f=35.5703, fbest=35.5705\nposition: x[0]=2.46894 x[1]=0.246657 x[2]=0.884777 x[3]=1.425 x[4]=0.723224 x[5]=0.701793 \n\n2019-04-04T23:53:13: niter=231, f=35.5712, fbest=35.5703\nposition: x[0]=2.46906 x[1]=0.246646 x[2]=0.884381 x[3]=1.425 x[4]=0.723392 x[5]=0.701813 \n\n2019-04-04T23:53:13: Iteration 230: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=231, f=35.5699, fbest=35.5703\nposition: x[0]=2.46889 x[1]=0.246654 x[2]=0.884778 x[3]=1.425 x[4]=0.723243 x[5]=0.701831 \n\n2019-04-04T23:53:13: niter=232, f=35.5697, fbest=35.5699\nposition: x[0]=2.46888 x[1]=0.246649 x[2]=0.884693 x[3]=1.425 x[4]=0.723307 x[5]=0.701875 \n\n2019-04-04T23:53:13: niter=233, f=35.5706, fbest=35.5697\nposition: x[0]=2.46902 x[1]=0.246642 x[2]=0.884309 x[3]=1.425 x[4]=0.723479 x[5]=0.701898 \n\n2019-04-04T23:53:13: Iteration 232: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=233, f=35.5694, fbest=35.5697\nposition: x[0]=2.46883 x[1]=0.246648 x[2]=0.884699 x[3]=1.425 x[4]=0.723327 x[5]=0.701914 \n\n2019-04-04T23:53:13: niter=234, f=35.5691, fbest=35.5694\nposition: x[0]=2.46881 x[1]=0.246644 x[2]=0.884619 x[3]=1.425 x[4]=0.72339 x[5]=0.701959 \n\n2019-04-04T23:53:13: niter=235, f=35.5701, fbest=35.5691\nposition: x[0]=2.46895 x[1]=0.246637 x[2]=0.884241 x[3]=1.425 x[4]=0.723561 x[5]=0.701982 \n\n2019-04-04T23:53:13: Iteration 234: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=235, f=35.5687, fbest=35.5691\nposition: x[0]=2.46876 x[1]=0.246642 x[2]=0.884627 x[3]=1.425 x[4]=0.723409 x[5]=0.701998 \n\n2019-04-04T23:53:13: niter=236, f=35.5685, fbest=35.5687\nposition: x[0]=2.46874 x[1]=0.246639 x[2]=0.884551 x[3]=1.425 x[4]=0.723472 x[5]=0.702043 \n\n2019-04-04T23:53:13: niter=237, f=35.5695, fbest=35.5685\nposition: x[0]=2.46887 x[1]=0.246633 x[2]=0.884178 x[3]=1.425 x[4]=0.723642 x[5]=0.702066 \n\n2019-04-04T23:53:13: Iteration 236: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=237, f=35.5681, fbest=35.5685\nposition: x[0]=2.46869 x[1]=0.246637 x[2]=0.88456 x[3]=1.425 x[4]=0.723491 x[5]=0.702082 \n\n2019-04-04T23:53:13: niter=238, f=35.5678, fbest=35.5681\nposition: x[0]=2.46858 x[1]=0.246634 x[2]=0.884484 x[3]=1.425 x[4]=0.723555 x[5]=0.702125 \n\n2019-04-04T23:53:13: niter=239, f=35.5688, fbest=35.5678\nposition: x[0]=2.46872 x[1]=0.246629 x[2]=0.884111 x[3]=1.425 x[4]=0.723726 x[5]=0.702146 \n\n2019-04-04T23:53:13: Iteration 238: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=239, f=35.5674, fbest=35.5678\nposition: x[0]=2.46853 x[1]=0.246633 x[2]=0.884492 x[3]=1.425 x[4]=0.723575 x[5]=0.702164 \n\n2019-04-04T23:53:13: niter=240, f=35.5672, fbest=35.5674\nposition: x[0]=2.46851 x[1]=0.24663 x[2]=0.884419 x[3]=1.425 x[4]=0.723638 x[5]=0.702208 \n\n2019-04-04T23:53:13: niter=241, f=35.5689, fbest=35.5672\nposition: x[0]=2.46867 x[1]=0.246627 x[2]=0.883732 x[3]=1.425 x[4]=0.723802 x[5]=0.702247 \n\n2019-04-04T23:53:13: Iteration 240: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=241, f=35.567, fbest=35.5672\nposition: x[0]=2.46847 x[1]=0.246629 x[2]=0.884339 x[3]=1.425 x[4]=0.723656 x[5]=0.70225 \n\n2019-04-04T23:53:13: niter=242, f=35.5667, fbest=35.567\nposition: x[0]=2.46845 x[1]=0.246627 x[2]=0.884278 x[3]=1.425 x[4]=0.723718 x[5]=0.702295 \n\n2019-04-04T23:53:13: niter=243, f=35.5674, fbest=35.5667\nposition: x[0]=2.46834 x[1]=0.246622 x[2]=0.883906 x[3]=1.425 x[4]=0.723894 x[5]=0.70231 \n\n2019-04-04T23:53:13: Iteration 242: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=243, f=35.5663, fbest=35.5667\nposition: x[0]=2.46833 x[1]=0.246627 x[2]=0.884291 x[3]=1.425 x[4]=0.723737 x[5]=0.702334 \n\n2019-04-04T23:53:13: niter=244, f=35.566, fbest=35.5663\nposition: x[0]=2.46831 x[1]=0.246625 x[2]=0.884226 x[3]=1.425 x[4]=0.7238 x[5]=0.702378 \n\n2019-04-04T23:53:13: niter=245, f=35.5671, fbest=35.566\nposition: x[0]=2.46845 x[1]=0.246621 x[2]=0.883872 x[3]=1.425 x[4]=0.723969 x[5]=0.702397 \n\n2019-04-04T23:53:13: Iteration 244: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=245, f=35.5657, fbest=35.566\nposition: x[0]=2.46826 x[1]=0.246624 x[2]=0.884241 x[3]=1.425 x[4]=0.723818 x[5]=0.702416 \n\n2019-04-04T23:53:13: niter=246, f=35.5654, fbest=35.5657\nposition: x[0]=2.46823 x[1]=0.246622 x[2]=0.884184 x[3]=1.425 x[4]=0.723956 x[5]=0.702468 \n\n2019-04-04T23:53:13: niter=247, f=35.5664, fbest=35.5654\nposition: x[0]=2.46836 x[1]=0.246629 x[2]=0.883828 x[3]=1.425 x[4]=0.724114 x[5]=0.702496 \n\n2019-04-04T23:53:13: Iteration 246: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=247, f=35.5649, fbest=35.5654\nposition: x[0]=2.46817 x[1]=0.246625 x[2]=0.884201 x[3]=1.425 x[4]=0.723971 x[5]=0.702509 \n\n2019-04-04T23:53:13: niter=248, f=35.5646, fbest=35.5649\nposition: x[0]=2.468 x[1]=0.246622 x[2]=0.884065 x[3]=1.425 x[4]=0.724029 x[5]=0.702556 \n\n2019-04-04T23:53:13: niter=249, f=35.5663, fbest=35.5646\nposition: x[0]=2.46814 x[1]=0.246619 x[2]=0.883438 x[3]=1.425 x[4]=0.724157 x[5]=0.702586 \n\n2019-04-04T23:53:13: Iteration 248: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=249, f=35.5644, fbest=35.5646\nposition: x[0]=2.46795 x[1]=0.246622 x[2]=0.884001 x[3]=1.425 x[4]=0.724038 x[5]=0.702597 \n\n2019-04-04T23:53:13: niter=250, f=35.5644, fbest=35.5644\nposition: x[0]=2.46813 x[1]=0.24662 x[2]=0.883955 x[3]=1.425 x[4]=0.724093 x[5]=0.702648 \n\n2019-04-04T23:53:13: niter=251, f=35.5654, fbest=35.5644\nposition: x[0]=2.46825 x[1]=0.246618 x[2]=0.883625 x[3]=1.425 x[4]=0.724253 x[5]=0.702674 \n\n2019-04-04T23:53:13: Iteration 250: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=251, f=35.5639, fbest=35.5644\nposition: x[0]=2.46807 x[1]=0.24662 x[2]=0.883979 x[3]=1.425 x[4]=0.724108 x[5]=0.70269 \n\n2019-04-04T23:53:13: niter=252, f=35.5635, fbest=35.5639\nposition: x[0]=2.46749 x[1]=0.246589 x[2]=0.883909 x[3]=1.425 x[4]=0.724005 x[5]=0.702694 \n\n2019-04-04T23:53:13: niter=253, f=35.5642, fbest=35.5635\nposition: x[0]=2.46773 x[1]=0.246589 x[2]=0.883701 x[3]=1.425 x[4]=0.724204 x[5]=0.70268 \n\n2019-04-04T23:53:13: Iteration 252: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=253, f=35.5632, fbest=35.5635\nposition: x[0]=2.46747 x[1]=0.246589 x[2]=0.883964 x[3]=1.425 x[4]=0.724034 x[5]=0.702722 \n\n2019-04-04T23:53:13: niter=254, f=35.563, fbest=35.5632\nposition: x[0]=2.46749 x[1]=0.24659 x[2]=0.883921 x[3]=1.425 x[4]=0.724112 x[5]=0.702747 \n\n2019-04-04T23:53:13: niter=255, f=35.5641, fbest=35.563\nposition: x[0]=2.4677 x[1]=0.24659 x[2]=0.883565 x[3]=1.425 x[4]=0.724299 x[5]=0.702745 \n\n2019-04-04T23:53:13: Iteration 254: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=255, f=35.5627, fbest=35.563\nposition: x[0]=2.46746 x[1]=0.24659 x[2]=0.883932 x[3]=1.425 x[4]=0.724137 x[5]=0.702778 \n\n2019-04-04T23:53:13: niter=256, f=35.5626, fbest=35.5627\nposition: x[0]=2.46748 x[1]=0.24659 x[2]=0.883866 x[3]=1.425 x[4]=0.72421 x[5]=0.70281 \n\n2019-04-04T23:53:13: niter=257, f=35.5636, fbest=35.5626\nposition: x[0]=2.46767 x[1]=0.246591 x[2]=0.883524 x[3]=1.425 x[4]=0.72439 x[5]=0.702814 \n\n2019-04-04T23:53:13: Iteration 256: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=257, f=35.5623, fbest=35.5626\nposition: x[0]=2.46744 x[1]=0.246591 x[2]=0.883883 x[3]=1.425 x[4]=0.724232 x[5]=0.702843 \n\n2019-04-04T23:53:13: niter=258, f=35.5622, fbest=35.5623\nposition: x[0]=2.46746 x[1]=0.246591 x[2]=0.88381 x[3]=1.425 x[4]=0.7243 x[5]=0.702879 \n\n2019-04-04T23:53:13: niter=259, f=35.5632, fbest=35.5622\nposition: x[0]=2.46764 x[1]=0.246592 x[2]=0.883466 x[3]=1.425 x[4]=0.724475 x[5]=0.702888 \n\n2019-04-04T23:53:13: Iteration 258: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=259, f=35.5618, fbest=35.5622\nposition: x[0]=2.46742 x[1]=0.246592 x[2]=0.883826 x[3]=1.425 x[4]=0.724321 x[5]=0.702914 \n\n2019-04-04T23:53:13: niter=260, f=35.5617, fbest=35.5618\nposition: x[0]=2.46742 x[1]=0.246592 x[2]=0.883768 x[3]=1.425 x[4]=0.724387 x[5]=0.702952 \n\n2019-04-04T23:53:13: niter=261, f=35.5626, fbest=35.5617\nposition: x[0]=2.46802 x[1]=0.246596 x[2]=0.883605 x[3]=1.425 x[4]=0.724601 x[5]=0.703027 \n\n2019-04-04T23:53:13: Iteration 260: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=261, f=35.5612, fbest=35.5617\nposition: x[0]=2.46747 x[1]=0.246593 x[2]=0.883861 x[3]=1.425 x[4]=0.724411 x[5]=0.703012 \n\n2019-04-04T23:53:13: niter=262, f=35.5609, fbest=35.5612\nposition: x[0]=2.46746 x[1]=0.246565 x[2]=0.883957 x[3]=1.425 x[4]=0.724478 x[5]=0.703046 \n\n2019-04-04T23:53:13: niter=263, f=35.562, fbest=35.5609\nposition: x[0]=2.46763 x[1]=0.24657 x[2]=0.883551 x[3]=1.425 x[4]=0.724649 x[5]=0.703055 \n\n2019-04-04T23:53:13: Iteration 262: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=263, f=35.5606, fbest=35.5609\nposition: x[0]=2.46742 x[1]=0.246567 x[2]=0.883957 x[3]=1.425 x[4]=0.724498 x[5]=0.70308 \n\n2019-04-04T23:53:13: niter=264, f=35.5604, fbest=35.5606\nposition: x[0]=2.46741 x[1]=0.246569 x[2]=0.883885 x[3]=1.425 x[4]=0.724562 x[5]=0.703116 \n\n2019-04-04T23:53:13: niter=265, f=35.5615, fbest=35.5604\nposition: x[0]=2.46757 x[1]=0.246573 x[2]=0.88352 x[3]=1.425 x[4]=0.724729 x[5]=0.703125 \n\n2019-04-04T23:53:13: Iteration 264: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:13: niter=265, f=35.5601, fbest=35.5604\nposition: x[0]=2.46737 x[1]=0.246571 x[2]=0.883896 x[3]=1.425 x[4]=0.724581 x[5]=0.703151 \n\n2019-04-04T23:53:13: niter=266, f=35.5601, fbest=35.5601\nposition: x[0]=2.46739 x[1]=0.246573 x[2]=0.883722 x[3]=1.425 x[4]=0.72464 x[5]=0.703192 \n\n2019-04-04T23:53:13: Iteration 265: Restarting iteration with increased lambda.\nLambda = 32\n\n2019-04-04T23:53:13: niter=266, f=35.5599, fbest=35.5601\nposition: x[0]=2.46734 x[1]=0.246572 x[2]=0.883885 x[3]=1.425 x[4]=0.724587 x[5]=0.703173 \n\n2019-04-04T23:53:13: niter=267, f=35.5597, fbest=35.5599\nposition: x[0]=2.4673 x[1]=0.246573 x[2]=0.883891 x[3]=1.425 x[4]=0.724608 x[5]=0.703206 \n\n2019-04-04T23:53:14: niter=268, f=35.5595, fbest=35.5597\nposition: x[0]=2.4673 x[1]=0.246575 x[2]=0.883814 x[3]=1.425 x[4]=0.724673 x[5]=0.70324 \n\n2019-04-04T23:53:14: niter=269, f=35.5606, fbest=35.5595\nposition: x[0]=2.46747 x[1]=0.246577 x[2]=0.883444 x[3]=1.425 x[4]=0.724841 x[5]=0.703246 \n\n2019-04-04T23:53:14: Iteration 268: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=269, f=35.5592, fbest=35.5595\nposition: x[0]=2.46726 x[1]=0.246576 x[2]=0.883823 x[3]=1.425 x[4]=0.724692 x[5]=0.703274 \n\n2019-04-04T23:53:14: niter=270, f=35.5591, fbest=35.5592\nposition: x[0]=2.46726 x[1]=0.246577 x[2]=0.88375 x[3]=1.425 x[4]=0.724754 x[5]=0.70331 \n\n2019-04-04T23:53:14: niter=271, f=35.5602, fbest=35.5591\nposition: x[0]=2.46742 x[1]=0.246579 x[2]=0.883384 x[3]=1.425 x[4]=0.724919 x[5]=0.703318 \n\n2019-04-04T23:53:14: Iteration 270: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=271, f=35.5588, fbest=35.5591\nposition: x[0]=2.46721 x[1]=0.246578 x[2]=0.88376 x[3]=1.425 x[4]=0.724772 x[5]=0.703345 \n\n2019-04-04T23:53:14: niter=272, f=35.5586, fbest=35.5588\nposition: x[0]=2.46721 x[1]=0.246579 x[2]=0.88369 x[3]=1.425 x[4]=0.724833 x[5]=0.703382 \n\n2019-04-04T23:53:14: niter=273, f=35.5597, fbest=35.5586\nposition: x[0]=2.46737 x[1]=0.246581 x[2]=0.883327 x[3]=1.425 x[4]=0.724995 x[5]=0.703392 \n\n2019-04-04T23:53:14: Iteration 272: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=273, f=35.5583, fbest=35.5586\nposition: x[0]=2.46717 x[1]=0.24658 x[2]=0.883701 x[3]=1.425 x[4]=0.72485 x[5]=0.703418 \n\n2019-04-04T23:53:14: niter=274, f=35.5582, fbest=35.5583\nposition: x[0]=2.46716 x[1]=0.246581 x[2]=0.883632 x[3]=1.425 x[4]=0.724909 x[5]=0.703456 \n\n2019-04-04T23:53:14: niter=275, f=35.5591, fbest=35.5582\nposition: x[0]=2.46732 x[1]=0.246583 x[2]=0.883271 x[3]=1.425 x[4]=0.725069 x[5]=0.703467 \n\n2019-04-04T23:53:14: Iteration 274: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=275, f=35.5578, fbest=35.5582\nposition: x[0]=2.46712 x[1]=0.246582 x[2]=0.883645 x[3]=1.425 x[4]=0.724926 x[5]=0.703492 \n\n2019-04-04T23:53:14: niter=276, f=35.5577, fbest=35.5578\nposition: x[0]=2.46711 x[1]=0.246583 x[2]=0.883577 x[3]=1.425 x[4]=0.724984 x[5]=0.703531 \n\n2019-04-04T23:53:14: niter=277, f=35.5581, fbest=35.5577\nposition: x[0]=2.46732 x[1]=0.246582 x[2]=0.883608 x[3]=1.425 x[4]=0.72515 x[5]=0.703528 \n\n2019-04-04T23:53:14: Iteration 276: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=277, f=35.5572, fbest=35.5577\nposition: x[0]=2.46707 x[1]=0.246583 x[2]=0.883701 x[3]=1.425 x[4]=0.725001 x[5]=0.703566 \n\n2019-04-04T23:53:14: niter=278, f=35.5571, fbest=35.5572\nposition: x[0]=2.46707 x[1]=0.246583 x[2]=0.883621 x[3]=1.425 x[4]=0.725059 x[5]=0.703603 \n\n2019-04-04T23:53:14: niter=279, f=35.5581, fbest=35.5571\nposition: x[0]=2.46722 x[1]=0.246583 x[2]=0.883253 x[3]=1.425 x[4]=0.725284 x[5]=0.703624 \n\n2019-04-04T23:53:14: Iteration 278: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=279, f=35.5568, fbest=35.5571\nposition: x[0]=2.46703 x[1]=0.246584 x[2]=0.88363 x[3]=1.425 x[4]=0.725095 x[5]=0.703639 \n\n2019-04-04T23:53:14: niter=280, f=35.5565, fbest=35.5568\nposition: x[0]=2.46689 x[1]=0.246576 x[2]=0.883552 x[3]=1.425 x[4]=0.725153 x[5]=0.703677 \n\n2019-04-04T23:53:14: niter=281, f=35.5575, fbest=35.5565\nposition: x[0]=2.46706 x[1]=0.246577 x[2]=0.88318 x[3]=1.425 x[4]=0.72531 x[5]=0.703686 \n\n2019-04-04T23:53:14: Iteration 280: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=281, f=35.5562, fbest=35.5565\nposition: x[0]=2.46685 x[1]=0.246577 x[2]=0.883561 x[3]=1.425 x[4]=0.725169 x[5]=0.703712 \n\n2019-04-04T23:53:14: niter=282, f=35.5561, fbest=35.5562\nposition: x[0]=2.46685 x[1]=0.246577 x[2]=0.883487 x[3]=1.425 x[4]=0.725225 x[5]=0.70375 \n\n2019-04-04T23:53:14: niter=283, f=35.5571, fbest=35.5561\nposition: x[0]=2.46702 x[1]=0.246578 x[2]=0.883119 x[3]=1.425 x[4]=0.725381 x[5]=0.70376 \n\n2019-04-04T23:53:14: Iteration 282: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=283, f=35.5558, fbest=35.5561\nposition: x[0]=2.46681 x[1]=0.246578 x[2]=0.883497 x[3]=1.425 x[4]=0.725241 x[5]=0.703786 \n\n2019-04-04T23:53:14: niter=284, f=35.5557, fbest=35.5558\nposition: x[0]=2.46681 x[1]=0.246578 x[2]=0.883425 x[3]=1.425 x[4]=0.725296 x[5]=0.703824 \n\n2019-04-04T23:53:14: niter=285, f=35.5564, fbest=35.5557\nposition: x[0]=2.46668 x[1]=0.246562 x[2]=0.88305 x[3]=1.425 x[4]=0.725459 x[5]=0.703826 \n\n2019-04-04T23:53:14: Iteration 284: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=285, f=35.5553, fbest=35.5557\nposition: x[0]=2.46668 x[1]=0.246575 x[2]=0.883435 x[3]=1.425 x[4]=0.725312 x[5]=0.703859 \n\n2019-04-04T23:53:14: niter=286, f=35.5552, fbest=35.5553\nposition: x[0]=2.46669 x[1]=0.246575 x[2]=0.883363 x[3]=1.425 x[4]=0.725369 x[5]=0.703897 \n\n2019-04-04T23:53:14: niter=287, f=35.5566, fbest=35.5552\nposition: x[0]=2.46719 x[1]=0.246578 x[2]=0.883035 x[3]=1.425 x[4]=0.725513 x[5]=0.703915 \n\n2019-04-04T23:53:14: Iteration 286: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=287, f=35.555, fbest=35.5552\nposition: x[0]=2.46674 x[1]=0.246576 x[2]=0.88338 x[3]=1.425 x[4]=0.725383 x[5]=0.703933 \n\n2019-04-04T23:53:14: niter=288, f=35.5545, fbest=35.555\nposition: x[0]=2.46654 x[1]=0.246576 x[2]=0.883322 x[3]=1.425 x[4]=0.725441 x[5]=0.703967 \n\n2019-04-04T23:53:14: niter=289, f=35.5633, fbest=35.5545\nposition: x[0]=2.46618 x[1]=0.246202 x[2]=0.883178 x[3]=1.425 x[4]=0.725371 x[5]=0.704178 \n\n2019-04-04T23:53:14: Iteration 288: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=289, f=35.5549, fbest=35.5545\nposition: x[0]=2.46644 x[1]=0.246471 x[2]=0.883356 x[3]=1.425 x[4]=0.725434 x[5]=0.704023 \n\n2019-04-04T23:53:14: Iteration 288: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:14: niter=289, f=35.5544, fbest=35.5545\nposition: x[0]=2.46651 x[1]=0.246549 x[2]=0.883336 x[3]=1.425 x[4]=0.72544 x[5]=0.703981 \n\n2019-04-04T23:53:14: niter=290, f=35.5544, fbest=35.5544\nposition: x[0]=2.46648 x[1]=0.24655 x[2]=0.883354 x[3]=1.425 x[4]=0.725445 x[5]=0.704003 \n\n2019-04-04T23:53:14: niter=291, f=35.5541, fbest=35.5544\nposition: x[0]=2.46644 x[1]=0.246552 x[2]=0.883361 x[3]=1.425 x[4]=0.725463 x[5]=0.704035 \n\n2019-04-04T23:53:14: niter=292, f=35.5539, fbest=35.5541\nposition: x[0]=2.46645 x[1]=0.246555 x[2]=0.883286 x[3]=1.425 x[4]=0.725523 x[5]=0.704067 \n\n2019-04-04T23:53:14: niter=293, f=35.5552, fbest=35.5539\nposition: x[0]=2.4668 x[1]=0.24657 x[2]=0.882924 x[3]=1.425 x[4]=0.725734 x[5]=0.704085 \n\n2019-04-04T23:53:14: Iteration 292: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=293, f=35.5536, fbest=35.5539\nposition: x[0]=2.46646 x[1]=0.246559 x[2]=0.883294 x[3]=1.425 x[4]=0.725554 x[5]=0.704102 \n\n2019-04-04T23:53:14: niter=294, f=35.5535, fbest=35.5536\nposition: x[0]=2.46647 x[1]=0.246561 x[2]=0.883221 x[3]=1.425 x[4]=0.725609 x[5]=0.704139 \n\n2019-04-04T23:53:14: niter=295, f=35.558, fbest=35.5535\nposition: x[0]=2.46866 x[1]=0.24659 x[2]=0.883039 x[3]=1.425 x[4]=0.725712 x[5]=0.7042 \n\n2019-04-04T23:53:14: Iteration 294: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=295, f=35.5539, fbest=35.5535\nposition: x[0]=2.46701 x[1]=0.246565 x[2]=0.883252 x[3]=1.425 x[4]=0.725619 x[5]=0.704181 \n\n2019-04-04T23:53:14: Iteration 294: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:14: niter=295, f=35.5535, fbest=35.5535\nposition: x[0]=2.4666 x[1]=0.246562 x[2]=0.883236 x[3]=1.425 x[4]=0.72561 x[5]=0.704153 \n\n2019-04-04T23:53:14: Iteration 294: Restarting iteration with increased lambda.\nLambda = 256\n\n2019-04-04T23:53:14: niter=295, f=35.5535, fbest=35.5535\nposition: x[0]=2.4665 x[1]=0.246561 x[2]=0.883225 x[3]=1.425 x[4]=0.725609 x[5]=0.704143 \n\n2019-04-04T23:53:14: niter=296, f=35.5532, fbest=35.5535\nposition: x[0]=2.4665 x[1]=0.246567 x[2]=0.88331 x[3]=1.425 x[4]=0.725613 x[5]=0.704165 \n\n2019-04-04T23:53:14: niter=297, f=35.5531, fbest=35.5532\nposition: x[0]=2.46648 x[1]=0.246567 x[2]=0.883321 x[3]=1.425 x[4]=0.725614 x[5]=0.704178 \n\n2019-04-04T23:53:14: niter=298, f=35.5529, fbest=35.5531\nposition: x[0]=2.46645 x[1]=0.246568 x[2]=0.883334 x[3]=1.425 x[4]=0.725619 x[5]=0.704199 \n\n2019-04-04T23:53:14: niter=299, f=35.5527, fbest=35.5529\nposition: x[0]=2.46642 x[1]=0.246568 x[2]=0.883332 x[3]=1.425 x[4]=0.725637 x[5]=0.70423 \n\n2019-04-04T23:53:14: niter=300, f=35.5526, fbest=35.5527\nposition: x[0]=2.46645 x[1]=0.246569 x[2]=0.88324 x[3]=1.425 x[4]=0.725696 x[5]=0.704261 \n\n2019-04-04T23:53:14: niter=301, f=35.5544, fbest=35.5526\nposition: x[0]=2.46702 x[1]=0.246596 x[2]=0.882878 x[3]=1.425 x[4]=0.725967 x[5]=0.704297 \n\n2019-04-04T23:53:14: Iteration 300: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=301, f=35.5525, fbest=35.5526\nposition: x[0]=2.46652 x[1]=0.246577 x[2]=0.883246 x[3]=1.425 x[4]=0.725746 x[5]=0.704297 \n\n2019-04-04T23:53:14: niter=302, f=35.5524, fbest=35.5525\nposition: x[0]=2.46652 x[1]=0.246577 x[2]=0.883164 x[3]=1.425 x[4]=0.725796 x[5]=0.704336 \n\n2019-04-04T23:53:14: niter=303, f=35.5541, fbest=35.5524\nposition: x[0]=2.46632 x[1]=0.246578 x[2]=0.882292 x[3]=1.425 x[4]=0.725834 x[5]=0.704334 \n\n2019-04-04T23:53:14: Iteration 302: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=303, f=35.5521, fbest=35.5524\nposition: x[0]=2.46637 x[1]=0.246578 x[2]=0.883032 x[3]=1.425 x[4]=0.725779 x[5]=0.704372 \n\n2019-04-04T23:53:14: niter=304, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: niter=305, f=35.5544, fbest=35.5521\nposition: x[0]=2.4639 x[1]=0.246481 x[2]=0.882409 x[3]=1.425 x[4]=0.725371 x[5]=0.704161 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=305, f=35.5526, fbest=35.5521\nposition: x[0]=2.46469 x[1]=0.246522 x[2]=0.882868 x[3]=1.425 x[4]=0.725476 x[5]=0.704352 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:14: niter=305, f=35.5522, fbest=35.5521\nposition: x[0]=2.46502 x[1]=0.246534 x[2]=0.882895 x[3]=1.425 x[4]=0.725534 x[5]=0.704359 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 256\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46512 x[1]=0.246537 x[2]=0.882892 x[3]=1.425 x[4]=0.725552 x[5]=0.704355 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1024\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46514 x[1]=0.246538 x[2]=0.882891 x[3]=1.425 x[4]=0.725557 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 4096\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 16384\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 65536\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 262144\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.04858e+06\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 4.1943e+06\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.67772e+07\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 6.71089e+07\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 2.68435e+08\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.07374e+09\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 4.29497e+09\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.71799e+10\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 6.87195e+10\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 2.74878e+11\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.09951e+12\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 4.39805e+12\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 1.75922e+13\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 7.03687e+13\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 304: Restarting iteration with increased lambda.\nLambda = 2.81475e+14\n\n2019-04-04T23:53:14: niter=305, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Objective function value and parameter change lower than tolerance (2/3). Resetting lambda.\n\n2019-04-04T23:53:14: niter=306, f=35.5815, fbest=35.5521\nposition: x[0]=2.4627 x[1]=0.246404 x[2]=0.879142 x[3]=1.425 x[4]=0.725337 x[5]=0.702937 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4\n\n2019-04-04T23:53:14: niter=306, f=35.5544, fbest=35.5521\nposition: x[0]=2.4639 x[1]=0.246481 x[2]=0.882414 x[3]=1.425 x[4]=0.725371 x[5]=0.70416 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 16\n\n2019-04-04T23:53:14: niter=306, f=35.5526, fbest=35.5521\nposition: x[0]=2.46469 x[1]=0.246522 x[2]=0.882869 x[3]=1.425 x[4]=0.725476 x[5]=0.704352 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 64\n\n2019-04-04T23:53:14: niter=306, f=35.5522, fbest=35.5521\nposition: x[0]=2.46502 x[1]=0.246534 x[2]=0.882896 x[3]=1.425 x[4]=0.725534 x[5]=0.704359 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 256\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46512 x[1]=0.246537 x[2]=0.882892 x[3]=1.425 x[4]=0.725552 x[5]=0.704355 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1024\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46514 x[1]=0.246538 x[2]=0.882891 x[3]=1.425 x[4]=0.725557 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4096\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 16384\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 65536\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 262144\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.04858e+06\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.1943e+06\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.67772e+07\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.71089e+07\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.68435e+08\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.07374e+09\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.29497e+09\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.71799e+10\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.87195e+10\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.74878e+11\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.09951e+12\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.39805e+12\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.75922e+13\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.03687e+13\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.81475e+14\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.1259e+15\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.5036e+15\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.80144e+16\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.20576e+16\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.8823e+17\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.15292e+18\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.61169e+18\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.84467e+19\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.3787e+19\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.95148e+20\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.18059e+21\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.72237e+21\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.88895e+22\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.55579e+22\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.02231e+23\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.20893e+24\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.8357e+24\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.93428e+25\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.73713e+25\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.09485e+26\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.23794e+27\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.95176e+27\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.9807e+28\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.92282e+28\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.16913e+29\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.26765e+30\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.0706e+30\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.02824e+31\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 8.11296e+31\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.24519e+32\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.29807e+33\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.1923e+33\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.07692e+34\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 8.30767e+34\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.32307e+35\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.32923e+36\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.31691e+36\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.12676e+37\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 8.50706e+37\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.40282e+38\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.36113e+39\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.44452e+39\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.17781e+40\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 8.71123e+40\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.48449e+41\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.3938e+42\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.57519e+42\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.23007e+43\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 8.9203e+43\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.56812e+44\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.42725e+45\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.70899e+45\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.2836e+46\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 9.13439e+46\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.65375e+47\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.4615e+48\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.84601e+48\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.3384e+49\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 9.35361e+49\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.74144e+50\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.49658e+51\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 5.98631e+51\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.39452e+52\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 9.5781e+52\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.83124e+53\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.5325e+54\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.12998e+54\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.45199e+55\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 9.80797e+55\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 3.92319e+56\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.56928e+57\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.2771e+57\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.51084e+58\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.00434e+59\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.01735e+59\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.60694e+60\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.42775e+60\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.5711e+61\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.02844e+62\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.11376e+62\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.6455e+63\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.58202e+63\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.63281e+64\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.05312e+65\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.21249e+65\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.685e+66\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.73999e+66\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.69599e+67\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.0784e+68\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.31359e+68\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.72544e+69\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 6.90175e+69\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.7607e+70\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.10428e+71\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.41712e+71\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.76685e+72\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.06739e+72\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.82696e+73\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.13078e+74\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.52313e+74\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.80925e+75\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.23701e+75\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.8948e+76\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.15792e+77\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 4.63168e+77\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.85267e+78\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 7.41069e+78\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 2.96428e+79\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 305: Restarting iteration with increased lambda.\nLambda = 1.18571e+80\n\n2019-04-04T23:53:14: niter=306, f=35.5521, fbest=35.5521\nposition: x[0]=2.46515 x[1]=0.246538 x[2]=0.88289 x[3]=1.425 x[4]=0.725558 x[5]=0.704354 \n\n2019-04-04T23:53:14: Iteration 306: Lambda reached maximal value. Terminating.\n\n2019-04-04T23:53:14: Algorithm reached the edge of the parameter domain 512 times.\n\n2019-04-04T23:53:14: Algorithm finished.\nTerminated after 307 of 2000 iterations.\n\n"

plotly::ggplotly(plots$Erk2.P)
plotly::ggplotly(plots$Mos.P)